Skip to main content
John Neff (Ring2Media) 님이 #Visualforce에 질문했습니다
Hello, 

I am having trouble with In-line edit functionality that I developed 6 months ago or so... at some point in the past couple of weeks it has stopped working.  Has there been some sort of update or something that would cause a piece of functionality to just stop working?  Here is an example of a place where I am using inline edit: 

on VF page: 

<apex:form >

<apex:pageBlock title="Qualified" mode="inlineedit">

<table cellpadding="5" style="border-collapse: collapse;table-layout:fixed" width="1120" border="1">

<tr>

</tr>

<apex:variable var="QualRev" value="{!0}"/>

<apex:repeat value="{!listOfQualified}" var="qd">

<tr >

<td width="450">

<apex:outputField value="{!qd.Next_Step__c}" >

<apex:inlineEditSupport event="ondblclick" showOnEdit="saveButton, cancelButton" />

</apex:outputField>

</td>

</tr>

</table>

<apex:commandButton action="{!saveQD}" value="Update Opptys"/>

</apex:pageBlock>

</apex:form>

and on my controller: 

 

public PageReference saveQD(){

UPDATE listOfQualified;

return null;

}

This setup worked for months - but then stopped.  I can't figure out why! Can anyone help? 

Thanks, 

John

 
답변 1개
0/9000