Property description
The filter property allows you to configure a list of selectable filters for a column.
Minimal JSON
{}
Example JSON
{
"isMultiselect":false,
"options":[
{
"value":"A""isDefaultSelected":true
},
{
"value":"B"
}
]
}
Table will filter for all A values by default. Filter for B can be selected from the dropdown, other values must be manually filtered.
Nested properties
| Property | Description | Value | Mandatory |
|---|---|---|---|
isMultiselect | Determines whether multiple values can be selected for the filter. | boolean | No |
options | Array of values available from a dropdown as filter options. | array | No |
Options properties
| Property | Description | Value | Mandatory |
|---|---|---|---|
value | Value of the filter, selectable from the dropdown. | string | No |
isDefaultSelected | Determines whether the value is selected as the default filter. The configuration depends on the isMultiselect property. “isMultiselect” = false: Up to 1 value can be set as the default., “isMultiselect” = true**: Multiple values can be set as the default. | boolean | No |
Once you change the default filters, the table will retain your configuration the next time you load the page.