dhtmlgrid

What methods or properties can I use to obtain the value of a given cell in a grid. For instance if from a script I want to obtain the value that is associated with the cell in row 2 column 10. I’ve tried using the cells object and its value property, but that is undefined. I’ve also tried meddling with the getUserData method, but that doesn’t seem to return anything either.

You can receive cell object as
    grid.cells(row_id,index)
or
    grid.cells2(row_index,index)
and use related API to get|set values
    dhtmlx.com/docs/products/dhtmlxG … excellsapi

    grid.cells2(2,10).getValue();