on VF page:
and on my controller:<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>
This setup worked for months - but then stopped. I can't figure out why! Can anyone help? Thanks, Johnpublic PageReference saveQD(){
UPDATE listOfQualified;
return null;
}

Hi John Neff, Please refer the below links for solution
- https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_compref_inlineEditSupport.htm
- https://developer.salesforce.com/forums/?id=906F0000000979sIAA
- http://sfdcsrini.blogspot.com/2014/08/inline-editing-in-visualforce-page.html
Hope this helps you!
Best Regards,Rakesh Thota.