I am using dynamical loading in treeview, however I want it to load children nodes when click the plus icon instead of clicking label, I tried to override lableClick event and preventDefault event, but it didn't work, yui still load the children node when I clicked label
tree.subscribe("labelClick", function(e) {
YAHOO.util.Event.preventDefault(e);
});
Any ideas to solve this problem? Thanks in advance.