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
Abhishek Pal 33Abhishek Pal 33 

How to use two functions on inlineEdit support in salesforce?

Hello Everyone,

I want to use a Javascript function on inlineEditSupport tag which will check the checbox corresponding to the record on which I am editing the field.

Please see the code snippet:-

 <apex:outputfield value="{!a.cAccount[f]}" rendered="{!f.type != 'picklist' && (EditEnabled == null || EditEnabled == false || a.isSelected == false) && f.fieldPath!='Name'}" id="AccValue">
                                                    <apex:actionSupport event="onchange"  rendered="{!a.fieldIsChanged = true}"/> 
                                                    <apex:inlineEditSupport event="onClick" rendered="{!DisableInlineEdit == false && (isMobile == false && (MultiEditOn == null || MultiEditOn == false))}" />
                                                </apex:outputfield>

Thanks in advance.