Skip to content

Instantly share code, notes, and snippets.

@choudharymanish8585
Created May 2, 2019 20:34
Show Gist options
  • Save choudharymanish8585/3ca0a206e1c858943588e6cd4b31e394 to your computer and use it in GitHub Desktop.
Save choudharymanish8585/3ca0a206e1c858943588e6cd4b31e394 to your computer and use it in GitHub Desktop.
<aura:component implements="force:appHostable,flexipage:availableForAllPageTypes" access="global" >
<!-- attributes -->
<aura:attribute name="data" type="Object"/>
<aura:attribute name="columns" type="List"/>
<aura:handler name="init" value="{!this}" action="{!c.doInit}" />
<!-- A very simple data table -->
<lightning:datatable
keyField="id"
data="{! v.data }"
columns="{! v.columns }"
hideCheckboxColumn="true"/>
</aura:component>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment