Is there a dhtmlgrid Row onMouseOver/onMouseOut event?

Hi - I’m looking to make a div visible when I hover over a dhtmlgrid row (onmouseover/onmouseout on a TR) but cannot see how I can do this. Does an event API (or trick) exist?

I want the result to resemble (in old fashioned HTML terms)…

<tr onmouseover='alert1()' onmouseout='alert2()'>...

Thanks
Al

You may try to use onMouseOver event:
docs.dhtmlx.com/doku.php?id=dhtm … nmouseover

Yep,

Works somthing like this:

grid.attachEvent(“onMouseOver”, function(id,ind){
// do this …
// id is the id of the row and ind is the index of the cell
});