Hi,
I'm using Infragistics 9.2 and have a problem with RowEditTemplate location. I want to edit the very last column of the grid using RET and want the RET to be displayed align with right egde of the grid. Does anybody know how to do this? I don't see any property of UltraGridCell which allows us to get its current location on the screen.
I have the same problem. Can you please tell me if you found any solution?
Thanks
The cell has a GetUIElement method. If the cell is displayed on-screen, then this will return the CellUIElement for that cell, and you can use the Rect of the element to determine it's position in grid coordinates. So you can then call grid.RectToScreen to convert the rect to screen coords.
If the cell is not visible on the screen, the GetUIElement method will return null - so be sure to check for nulls.