Greetings,
I'm trying to write a drag and drop routine. I have a split pane with a tree on one side and a WebGrid on the other. When the user chooses a node from the tree and drags it to the grid, I want the row which the user hovers over to activate or become selected.
As it stands now this does not happen. It requires an actual click to high-light the row.
Anyone have ideas here?
Thanks!
Have a look in the property grid under DisplayLayout for the client side events. You will find the MouseOutHandler, MouseOverHandler. I use those methods to handle hovering events in my grids so you should be able to work it out with that.
Terrific
While I have your interest, can you tell me how I would capture the 'row id' ? I will use the approach you directed but i'm wondering how I will be able to capture the row id using these methods.
For instance, I know there is something for cells:
function Over(gridNane, cellID, objectType) { var cell = igtbl_getCellById(cellID);
...
But how about the rows??