3.2.0

How to select all record in AW Grid at once

hi all,

can some one tell me is there any method to select all the rows in AW Grid at once.

thanks
Gayan Herath
October 31,
http://www.activewidgets.com/javascript.forum.16116.9/select-all-rows-performance-problem.html
October 31,
I found the way. no need help on this :-)

function select_all(){


var i, rows = [], max = grid.getRowCount();

for (i=0; i<max; i++){
rows.push(i);
}

grid.setSelectedRows(rows);

}
Gayan Herath
December 5,

This topic is archived.

See also:


Back to support forum