Hi,
I have a grid with checkbox selection mode.
When the grid is loaded I wish to select many relevant rows according to my data.
The grid can contain many rows (over 2000) and if I wish to select only part of them (lets say 1000)
I perform a loop over the rows(after the table is loaded) and execute the ‘selectrow’ method for the relevant rows.
This is very costly when I have many rows and just the loop of selecting can take 15 seconds.
When all need to be selected I use ‘selectallrows’ and this is done quickly.
Any way to tell the grid if each row needs to be selected upon loading without looping over all the rows and performing it explicitly?
Thanks