dhtmlTree Image Selected Item

Hello,



Can we change the image of the selected item for nodes without children ?



Thanks

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;
});