filterable - paulmaclean/datatables.webcomponent GitHub Wiki
filterable
Type: FilterableOpts
Default:
{
enabled: true,
colIndexes: [],
}
The filterable property sets the options for filterting columns. The colIndexes array indicated which columns are to be filterable.
example
render() {
return html`
<example-data-table .filterable="${ {colIndexes: [1]} }"></example-data-table>
`
}