Categories | Question details Back To List | ||
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 |