How do I find out what grid it belows to?
I'm listening for a BeforeEditorButtonDropDown event and included in the BeforeEditorButtonDropDownEventArgs is the '.Context' that contains an UltraGridCell.
How can I find the Grid that the cell is in?
The easiest way would be cell.Band.Layout.Grid
-Matt
This may not be the most effecient way, but you could call GetUIElement and from that UIElement call getContext passing in the UltraGrid type.