1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-05-03 07:03:33 +02:00
1 1.20 Single filter
koalyptus edited this page 2017-12-26 21:56:58 +11:00
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'
  } 
};