I have a 10 x 10 grid/table. I want to highlight the entire row when my cursor hovers (not select) over any cell of that row.
Take the image below for example, if my cursor lands on CELL(1,J), the entire row 1 should be coloured in cyan, and then return to the original colour when my cursor leaves any cell from that row. And this should happen in real time with any row that my cursor lands on.
The EVT_MOTION is the correct way to go, but the object to bind the event is grid.GridWindow.
I’ve referenced some resources to create a simple example as follows: