Expanded state of cell and general API

Hi, I’ve searched a little and read through what I could see of the online help and .chm versions. However, I cannot seem to find any documentation concerning the api available functions/methods/properties of a grid ‘Cell’. Can someone please let me know if this type of documentation level exists (and of course if so, where)?

Beyond that, I was specifically looking for a method similar to isOpened() to find out if a cell sub_row had been collapsed or expanded already (making the double click even toggle the +/- states).

Thanks for the assistance.

-Ray

Hello
is this what are you looking for?

onSubRowOpen

Grid documentation

No sorry it isn’t.
For the specific need I have a double click event registered for the grid which I want the sub_row to either expand or collapse on. I see the documentation for doing the ‘open’ or ‘close’ (which work nicely) but nothing that indicates which actual state it’s currently in so I don’t truly know what operation to perform. If there is not exposed method (say like ‘isOpened()’) on the cell/row (which is the API I was hoping to find) I can try looking into the DOM elements for a possible solution probably.

Please, try to use the isOpen() method:

grid.cells(row_id,col_ind).isOpen()

That works just great! Do you know where I can get the documentation showing the ‘isOpen()’ method so I don’t have to ask silly questions in the future?

Thanks a lot.

:confused: unfortunately this method is not documented.