I have a short but important question. How can I
query the value of cell 2 in Row 3 (let’s say the ID of row 3 is ID3)?
There are special grid.cells, grid.cells2 methods
which are used to obtain cell editor Id. Cell editor’s API described in
documentation is included in package; to obtain value you need something
similar to the next:
mygrid.cells(“ID3”,2).getValue(); //2 is zero-based index
or
mygrid.cells2(3,2).getValue();