Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Raghu on Oct 21, 2008 06:27
open dhtmlx forum
Grid

Hi,
how to select all the rows of all the pages of a grid
Answer posted by Support on Oct 21, 2008 07:48
The next code will work, but it is not very fast

mygrid.forEachRow(function(id){
   mygrid.selectRow(id,true);
});