Is there a way of initializing the filter?

Hi.



I’m using dhtmlgrid with filter.





The row is added with the filter hung.

After the filter is released, can the row addition be done?



Yours sincerely,

If you adds the row while grid in filtered state it may cause not predictable results ( basically row will be added, and will be accessible by API, but may visually disappear after filtering removed )
To add row you need to remove filtering state first
    grid.filterBy(0,"");   // filter by empty value will cause resetting grid to initial state
    grid._srowsCol=null; // drop row cache
    grid.addRow(… // normal add row API will work correctly now