Categories | Question details Back To List | ||
dhtmlTree Image Selected Item Hello, Can we change the image of the selected item for nodes without children ? Thanks Answer posted by Support on Jun 05, 2009 07:33 >>Can we change the image of the selected item for nodes without children ? There is no such separate setting as "selected item image", but you can use onClick event of the tree as tree.attachEvent("onClick",function(id){ tree.setItemImage(id,"some.gif"); return true; }); |