Hi Team,
How to select all rows from grid.Currently mygrid.selectAll(); selects rows from on that page only.I want to select rows from other pages also.
Can you help please?
Thanks
-Agile
In order to select all rows its better to use the following approach:
for(var i = 0; i < grid.getRowsNum(); i++){
grid.selectRow(i,false,true);
}
Also we have found a small issue in dhtmlxgrid.js. We have sent you the fixed file by email. Please, try to use this file and provided approach.