Filters
// define you columns, in this demo Effort Driven will use a Select Filter
const columnDefinitions = [
{ id: 'title', name: 'Title', field: 'title' }, // without filter
{ id: 'description', name: 'Description', field: 'description', filterable: true } // with filter
];
// you also need to enable the filters in the Grid Options
const gridOptions = {
enableFiltering: true
};You could disable the Filters completely,
You could also enable Filters but Hide them from the user in the UI
Last updated