Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Herick on Oct 13, 2008 12:02
open dhtmlx forum
Event onMouseOver in a node

There's a way to put the onMouseOver event in the nodes of the Tree?

Regard's.
Answer posted by Support on Oct 14, 2008 01:38
There are next two events of tree

onMouseIn
onMouseOut

which fire when mouse moved over item, or moved out from item

tree.attachEvent("onMouseIn",function(id){
   //id of item
  ... any custom code here...
});

Please be sure to set those events before loading data in tree