Selecting Multiple Nodes in ASP.Net treeview
-
I have two treeviews in my page. I want to select multiple nodes on the left hand side of the tree view and add the same to the right hand side. Is it possible to do so in a web page? This is something like a list of items on the lefthand side listbox, then clicks a button called "Add>>", so it will add to the righthand side of listbox. Any help in this regard? Please help. any links or code page to this direction would be really great.
Success is the good fortune that comes from aspiration, desperation, perspiration and inspiration.
-
I have two treeviews in my page. I want to select multiple nodes on the left hand side of the tree view and add the same to the right hand side. Is it possible to do so in a web page? This is something like a list of items on the lefthand side listbox, then clicks a button called "Add>>", so it will add to the righthand side of listbox. Any help in this regard? Please help. any links or code page to this direction would be really great.
Success is the good fortune that comes from aspiration, desperation, perspiration and inspiration.
allow checkboxes for the treeview by setting ShowCheckBoxes property to 'All' the and u can select multiple nodes and on click of add button ,take those checked nodes to right.
-
allow checkboxes for the treeview by setting ShowCheckBoxes property to 'All' the and u can select multiple nodes and on click of add button ,take those checked nodes to right.