When a user hovers over a cell or row in my grid, I need to be able to attach my own custom event handler. Is this possible? Is it possible in some other way to know which row/cell they are hovering over (short of measuring the x/y coordinates on Grid.MouseEnter, which I already know I can do, but it's messy)
Hi,
We don't offer events for this. However, you'll need to be careful with the approach you're proposing, b/c as you scroll those cell and row controls. they will be reused for other cells and rows as part of the recycling engine.
What are you trying to accomplish?
Maybe i can suggest another way to achieve what you're looking to do.
-SteveZ
Hi - thanks for your response.
It's kind of complicated, but I'll do my best to explain.
Our UI starts out with a list view, and when you click on a record, we shrink down the list view to one or two columns on the left with the detail showing in another pane on the right. When the user mouses over the left hand list view in this split mode we gray out the detail pane on the right and want to effectively show the rest of the mouseover record. What I've done is create another xamWebGrid in the right hand pane that shows the remainder of the columns for the row the user is mousing over in the left hand side... make sense?