Home SALESFORCEAPEX How to enable the inline editing using Visualforce page

How to enable the inline editing using Visualforce page

Step 1:
Create a new Custom Visualforce page with following code. (Setup-> Develop – > Pages)

<apex:page StandardController="Account" tabStyle="Account" sidebar="true" >
    <apex:detail inlineEdit="true" relatedList="true"/>
</apex:page>
Note: In above code you have to Put API name of your Salesforce object.

Step 2:
Override your Standard button of Object(“View”) and select the above newly created visual force page.

and make sure that the inlineEdit component support the inline Editing: <apex:inlineEditSupport>

Note: once override the standard salesforce button like Edit and Delete then inline edit option is not available in standard salesforce detail page for the respective object data.

You may also like

Leave a Comment