1 个回答
You can add the actions for each column in LWC -
{
label: 'Name',
fieldName: 'name',
type: 'text',
sortable: true,
actions: [
{ label: 'Filter by Name', name: 'filterByName' },
]
}
You can add the actions for each column in LWC -
{
label: 'Name',
fieldName: 'name',
type: 'text',
sortable: true,
actions: [
{ label: 'Filter by Name', name: 'filterByName' },
]
}