Skip to main content

how to do approval process


Popular posts from this blog

How to refresh lightning web component.

How to refresh lightning web component?. Use below method to refresh to lightning web component. - refreshApex function call apex method and re load latest data in track variable. - now your LWC have the latest data. refreshApex(this.yourTrackVariable);

How to apply filters on lightning datatable

lightning:datatable <div style="height: 300px">         <lightning:datatable                 keyField="id"                 data="{! v.data }"                 columns="{! v.columns }"                 hideCheckboxColumn="true"/>     </div> directly we can not apply filters on lightning data table,  - create filters form - submit filters data in where query - get result data  - submit result data to lightning:datatable