function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
ca_peterson_oldca_peterson_old 

[Bug] Inline editing not working in chrome

I was trying out the inlineEdit attribute on the apex:detial tag and noticed something interesting, it doesn't work correctly on Chrome but does on all other supported browsers.

 

Here's my stupidly simple visualforce page:

<apex:page standardController="itil_b__Incident__c">
    <apex:form >
        <apex:detail subject="{!itil_b__Incident__c}" inlineEdit="true">
        
        
        </apex:detail>
    </apex:form>
</apex:page>

When saving an inline editing action in chrome the buttons on the detail component change to "Saving..." and the data does actually get commited to the record, but the page never changes from "Saving..." back to it's proper state even when the data is comitted. 

 

Trying the same thing in firefox gets the expected results. In chrome's javascript console I see this line I suspect is the issue:

 

Uncaught ReferenceError: sforce is not defined - apex.js:2

 

And for the record all extensions are disabled during this.

 

ca_peterson_oldca_peterson_old

Well it seems to be working now, not sure what changed, if anything. Thanks to salesforce for finally getting us inline editing!

Cory CowgillCory Cowgill

Chrome support is fully supported as of Spring 11 release. Before Spring 11 it was not fully supported.

 

Over the weekend Salesforce was still upgrading instances to Spring 11.

 

All instances should now be on Spring 11, which is everything is working in your Chrome browser now.