makes a filter from any input element (text filter), select (dropdown) or DIV (combobox based on dhtmlxCombo)
id | id|HTMLElement | input id or input HTML object |
column | number | index of a column |
preserve | boolean | filter the current state or the initial one (optional, false by default) |
Available only in PRO Edition
//minimal parameters set
myGrid.makeFilter("some_el",0);
//maximal parameters set
myGrid.makeFilter("some_el",0,true);
Back to top