Home SALESFORCELightning Web Component Lightning-Datatable Using Lightning Web Component (LWC)

Lightning-DataTable Using Lightning Web Component

lightning-datatable component displays tabular data where each column can be displayed based on the data type.

 

 

 

 

 

Syntax for Lightning DataTable in Lightning Web Component

<template>
    <lightning-datatable
            data={data}
            columns={columns}
            key-field="id"
            onrowselection={getSelectedName}>
    </lightning-datatable>
</template>

HTML File:

lightningDataTable.html

Javascript File:

lightningDataTable.js

Meta File:

lightningDataTable.js-meta.xml

Apex Controller

AccountController.cls

 

Result:

 

Reference:

https://developer.salesforce.com/docs/component-library/bundle/lightning:datatable/example

You may also like

Leave a Comment