I successfully create a tree in asp.net form. And i attach a handler for onlick action.
dhtmlxtree.attachEvent("onClick", function(id){
onTreeNodeSelect(id);
return false;
});
However, the return false does not seem to have any effect at all, and the postback is occurred and the whole page is refreshed. Is there any way that i cancel the postback treenode click?
Thanks