I have a grid with one “ch” type column. I want to have a Check All" button to make all the boxes in all rows checked.
There is a problem, because I’m using Paging in this grid: simle
grid.cells2(i, 0).setValue(chkstat);
is not working. When reading values I may use
w = grid.rowsBuffer[i];
if(w != null) v = grid._get_cell_value(w, 0);
Is there some similar trick for writing value into cells?