How to display the data on clicking of a button in salesforce Lightning
Component ---------- <aura:component implements="force:appHostable" controller="DataList"> <aura:attribute name="accdata" type="List"/> <ui:button aura:id="button" label="show" press="{!c.doInit}"/> <table class="slds-table slds-table--bordered slds-table--striped slds-table--cell-buffer slds-table--fixed-layout"> <thead> <tr class="slds-text-heading--label"> <th scope="col"><div class="slds-truncate" title="ID">ID</div></th> <th scope="col"><div class="slds-truncate" title="Name">Name</div></th> <th scope="col"><div class="slds-truncate" title="Site">Site</div></th> </tr> </thead> <tbody> ...