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
Edwin VijayEdwin Vijay 

Action support in Outputfield

Hi All,

 

I created a small visualforce page with an actionsupport within a outputfield.. but for some reason the "action" method is not getting called..

 

 

<apex:page standardcontroller="Account" extensions="inlineediting"> <apex:form> <apex:pageblock> <apex:outputPanel id="outpanel"> <apex:outputpanel> <apex:outputfield value="{!Account.Name}" rendered="{!readonlymode}"> <apex:actionSupport event="onclick" action="{!inlineedit}" rerender="outpanel"/> </apex:outputfield> <apex:inputfield value="{!Account.Name}" rendered="{!editmode}"/> </apex:outputpanel> </apex:outputPanel> </apex:pageblock> </apex:form> </apex:page>

 thanks for any help...

 

 

KtobenerKtobener
Could you please include the code from your extension "inlineediting"?