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
GaneeeshGaneeesh 

Inline edit option not working.

Hi every one,

    I have overridden edit button with visualforce page so the I lost inline edit feture in record detail page. Then how I can get inline edit option in record detail page. Can anybody help me.
Anoop yadavAnoop yadav
Hi,

Make the changes in your Visualforce page according to below link.
https://www.salesforce.com/us/developer/docs/pages/Content/pages_compref_inlineEditSupport.htm
Naveen Rahul 3Naveen Rahul 3
<apex:page standardController="Account" sidebar="false">
     

   <apex:detail rendered="true" relatedListHover="false" inlineEdit="true"/>
</apex:page>
if its an detail page you can set inlineEdit=true.


Thanks
D Naveen Rahul.