grid.forEachRow gives all the rows in grid. Even the filtered out rows are included.
Is there any API which returns only the included rows after filter is applied and not all the rows?
grid.forEachRow gives all the rows in grid. Even the filtered out rows are included.
Is there any API which returns only the included rows after filter is applied and not all the rows?
You can iterate by grid indexes
[code]for (var i=0; i<grid.getRowsNum(); i++)
alert( grid.getRowId(i));
[/code]