Skip to content

filterable

Paul edited this page Jan 2, 2019 · 2 revisions

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>
    `
}

Clone this wiki locally