Having problem in save/edit/delete records in filter mode?

I am using dhtmlxgrid. In the grid edit mode, after applied the filter on the columns we don’t have control on filtered records. When we trying to iterate the filtered records it iterate all the records in the grid irrespective of the filter.

Please, try to use the forEachRowA method to iterate through the filtered rows:

mygrid.forEachRowA(function(id){ console.log(id) })

Thanks for your reply. Small correction in my question.

I am using dhtmlxgrid. In the grid edit mode, after appling the filter on the columns when we iterate over the grid, i get only the filtered records not the entire data grid records.

And also, when i try to get the XML data using serialize() method, i get only the filtered records not the entire grid value.

Hence we would know how to serialize of entire grid records in the filter mode and how to iterate the grid in the filter mode where it should iterate all the records in the grid irrespective of the filter.

Hence we would know how to serialize of entire grid records in the filter mode
Unfortunately such feature is not available.

how to iterate the grid in the filter mode where it should iterate all the records in the grid irrespective of the filter.

Please, try to use the forEachRowA method to iterate through the filtered rows:

mygrid.forEachRowA(function(id){ console.log(id) })