I have two grids (TcxGrid) in my application, each one in a side of the form. Both grids show linked data, although they could be scrolled vertically separatedly. I want to draw arrows in the middle panel, showing the line of the other grid that the record is linked to, like this example:
GridA GridB
+---+ +---+
| a |---| a |
| b | | i |
| c |\ | h |
| d | \ | g |
| e | \| h |
| f | | b |
+---+ +---+
The draw proccess are simple. My trouble is with identify the record positions. How do I discover what is the vertical position of each grid row/record, considering that could have grouping in both grids?
Thank you in advance.