You need to sign in to do that
Don't have an account?
actionsupport not working
I have a action support inside a apex command link which is present inside a page block table. The action support in not calling the apex method.
<apex:column headerValue="Call Attempt"> <apex:commandLink>{!cmpgnMember.Call_Attempt__c} <apex:actionSupport action="{!createCallReport}" event="onclick" /> </apex:commandLink> </apex:column>
public PageReference createCallReport(){ System.debug('******contactId: '); return null; }
Let us know if this will help you