How do I get the value of a cell in a tree grid?


You can use
    grid.cells(i,j).getValue();
where
    i - row ID
    j - column index

or

grid.cells2(i,j).getValue();

where

    i - row index

    j - column index