I am trying to overlay an external editor on top of the current active cell (we don't want to use GridControl's editors for various reasons). My apporach is to create an adoner out of the current active cell and lay my custom control on top of it. There are two issues I am facing currently
1) How to get the "bound" of current active cell. I used Rect rect = AssociatedObject.RangeToClippedVisibleRect(args.CellRowColumnIndex) in the event handler of CurrentCellActivating, but the "Rect" always has some offset and is not the correct "bound" of the current active cell
2) How to get the Adorner of the current active cell when CellType is "Static" (since cell model's rendered control is null in the case)
Thanks in advance for the help.
Ming