6.7K
Lightning-DataTable Using Lightning Web Component
A 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:
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