Cell object reference?

Hi,

Are the cell objects documented any where?

At the end of the “API Reference” list (in the CHM file), I see a lists of cell objects that look as if they should be linked to topics, but they are not.

FYI: it took me a while to figure out how to read the value of a cell. First, I could not find it documented how to do this. Secondly, I was assuming that there was a property that would return the value. I since stumbled on some sample code that shows I have to use a getValue() method instead of a property. Now, since I don’t find this method documented for the grid, I’m wondering if it’s safe to use? (safe in the sense of it being supported in future versions)

Karl

You can get cell object with 2 methods:

var obj=mygrid.cellById(row_id,column_index); var obj=mygrid.cellByIndex(row_index,column_index);

Tutorial is available here docs.dhtmlx.com/doku.php?id=dhtm … of_excells