Grid + onmouseout

Hi!
Is there a way to attach an onMouseOut-Event to a grid cell?

Unfortunately you may only use onMouseOver event:
docs.dhtmlx.com/doku.php?id=dhtm … nmouseover

Ok, thanks.
I’d like to create an rollover-effect for a single grid cell.
Do you have an idea or solution?

You may try to check if the cursor is over the needed cell.
For example:

grid.attachEvent("onMouseOver", function(id,ind){ if(id=="row1"&&ind==3){ //show effect } else { //hide effect } });

Got it.
Thanks again very much.