3.2.0

How to return active cell position in grid?

Hi

I want to find the active cell position like this:

row=4
col=3

How to do this?
Ashkan
February 3,
Try this:

col = this.getSelectedColumns();
row = this.getSelectedRows();

A.F.H
February 3,
getSelectedColumns/Rows methods return the arrays of the selected column/row indices. You can also get the current column/row with getCurrentColumn(), getCurrentRow() methods.
Alex (ActiveWidgets)
February 4,

This topic is archived.

See also:


Back to support forum