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
devfredevfre 

Inline editing in VF Page

Can somebody let me know how to do inline editing in a VF page for the apex:output field with value as{!account.owner id}

 

NOte: i tried with apex:detail with inline edit=true inside the apex:form, its showing the inline edit properly but the page is displaying twice with inline edit feauture enabled in the top and without inline edit in the bottom

 

i also tried with <apex:inlineeditsupport>, but its not working for this particular output field

 

can somebody help me out in this?

priya123priya123

Hi,

 

    In <apex:pageBlock>, use the mode attribute and give the value as inline edit like below:

 

         <apex:pageBlock mode="inlineEdit".../>

devfredevfre

hi i tried with this, and it is showing the error inline editin is not supporting for this type