Categories | Question details Back To List | ||
DHTMLX tree with multiselection
I'm using a DHTMLX tree with multiselection; The answer to this has been posted: var ids = tree.getSelectedItemId().split(","); ..........................................................
Answer posted by Support on Aug 25, 2008 02:48 There is no any built-in event to monitor unselecting of nodes, but you can try to use onClick event in next way tree.attachEvent("onClick",function(){ Answer posted by Prasad PG on Aug 26, 2008 00:25 Thanks a lot; a small correction in the answer: the 0 given below should actually be 1. tree.attachEvent("onClick",function(){ Once again many many Thanks! Answer posted by Support on Aug 26, 2008 06:37 >>the 0 given below should actually be 1. yes, you are correct, was a typo from my side |