Add the input checkbox and its handler in the salesforce lightning component #inSalesforce
On your component page:
<aura:component implements="flexipage:availableForAllPageTypes">
<ui:inputCheckbox aura:id="demo" label="Sample" change="{!c.onCheck}"/>
</aura:component>
Client-side controller page:
Comments
Post a Comment