Title: unselect a selected tree node Post by: Stefan B. on January 24, 2014, 06:56:18 AM Can one help me with my question?
How can I unselect a selected tree node per code? I found am method "select" but no a method "unselect". Title: Re: unselect a selected tree node Post by: stworthy on January 25, 2014, 01:12:58 AM It is easy to extend the 'unselect' method.
Code: <script> The code below shows how to unselect the selected node. Code: var t = $('#tt'); // the tree object Title: Re: unselect a selected tree node Post by: Stefan B. on January 27, 2014, 02:03:11 AM THX for this example, this is a very good solution. I try it and it works fine. :)
|