Any way to filter by multiple columns ??

Hi!



There is a function filterBy(value,column);… but is there any possibility to filter grid by multiple columns at once ?

Yes, you can combine few filterBy calls
    grid.filterBy(0,“A”);   //filter by A in first column
    grid.filterBy(1,“B”,true);   //filter by B in second column, the true as last parameters means that filtering will be applied not all grid, but to results of previous filtering

dhtmlx.com/docs/products/dhtmlxG … grid_fsing