Position of cells

Hi,

I want to position a window left beneath a selected cell. I’m clear with positioning the window at x and y coordinates. But how do I get the x and y coordinates of the cell?

Karl

You can get html object with following code:

grid.cellById(row_id,cell_index).cell

now you can get cell’s x,y coordinates as coordinates of usual html element.

Thanks.
I will try on the weekend…

Karl