-
Notifications
You must be signed in to change notification settings - Fork 92
1.20 Single filter
koalyptus edited this page Dec 26, 2017
·
1 revision
| Property | Type | Description | Remarks | Example |
|---|---|---|---|---|
| single_filter | boolean or literal object | A single filter filtering whole table (default - false) | You can use this option with a literal object too |
var tfConfig = { single_filter: true };
// or
var tfConfig = {
single_filter: {}
};
|
| exclude_cols | array | List of column indexes to exclude from filtering (default - []) |
var tfConfig = {
single_filter: {
exclude_cols: [2, 5, 8]
}
};
|
|
| css_class | string | Define the css class for filter element (default - 'single_flt') |
var tfConfig = {
single_filter: {
css_class: 'my-css-class'
}
};
|