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
Mani PenumarthiMani Penumarthi 

Inline Editing is not working in Opportunity detailed view

Hi Guys,

I have enabled the inlineediting functionality  in userInterface and it was working for all the objects except for opportunity detailed view. Could any one help me out to find solution on this.
Best Answer chosen by Mani Penumarthi
Sfdc CloudSfdc Cloud
Hi,
Could u check edit action of Opportunity object,it should not be overridden with any Vf Page.

To  use inline editing concept then edit action of specific object should not overridden with any visual-force page. If the Edit action has been overridden for an object, Inline Editing will not be available for that object.

Refer Below article and link for more learn 

http://help.salesforce.com/apex/HTViewSolution?id=000004555&language=en_US
http://salesforceworld4u.blogspot.in/2013/12/inline-editing-is-not-available-for.html

If this answer will hep you,mark it as a best answer to help others :)
Thanks

All Answers

sunny522sunny522
Hi Manu,

         Is there any javscript code running in that Opportunity detailed view page?(either by onclickjavascript functionality,vf page included)
Sfdc CloudSfdc Cloud
Hi,
Could u check edit action of Opportunity object,it should not be overridden with any Vf Page.

To  use inline editing concept then edit action of specific object should not overridden with any visual-force page. If the Edit action has been overridden for an object, Inline Editing will not be available for that object.

Refer Below article and link for more learn 

http://help.salesforce.com/apex/HTViewSolution?id=000004555&language=en_US
http://salesforceworld4u.blogspot.in/2013/12/inline-editing-is-not-available-for.html

If this answer will hep you,mark it as a best answer to help others :)
Thanks
This was selected as the best answer
Smriti Kumari (Shumpy)Smriti Kumari (Shumpy)

Hi @Mani,

I have found a workaround for this. Even if you have New and Edit page overriden by VF page you can still enable inline editing by adding a new page for detail override.

<apex:page standardController="Opportunity">
    <apex:detail inlineEdit="true"/>
</apex:page>


You just need to create a VF page with the standard controller as the sObject for which we want detail page to be overriden for inline editing. 
Go to Buttons and Links of that sObject and Edit the *View*. 
Get it overriden with this VF page . This will resolve your problem. 

Thanks,
Smriti