How to find row of a widget?
I 开发者_开发百科have a widget that I've added to a FlexTable. I would like to find its current row.
One solution is to enumerate through all the rows of the table and see if it matches my widget.
Is there a better solution?
If you want to do this in response to an event then you an use the getCellForEvent method to find the cell (row / column).
精彩评论