How to display a custom button when checkbox is checked in Salesforce?
Sample code: Visualforce page: <apex:page controller="Sample" ><apex:form > <apex:pageBlock id="pg" > <apex:pageblockSection > <apex:pageblockSectionItem >Check it to view the button:</apex:pageblockSectionItem> <apex:pageblockSectionItem > <apex:inputCheckbox value="{!option}" > <apex:actionsupport event="onclick" action="{!change}" reRender="pg"/> </apex:inputCheckbox> ....