This is a migrated thread and some comments may be shown as answers.

I want selection on the client to cascade down, preferably while allowing ctrl-clicks

1 Answer 9 Views
TreeView
This is a migrated thread and some comments may be shown as answers.
C
Top achievements
Rank 1
C asked on 02 Mar 2015, 10:31 AM
In my tree, the leaves are the data carriers, but I want a click on a particular node to (visually) select itself and all its descending nodes. I am then using the list of selected nodes in an Ajax request.

But I haven't been able to figure out how to accomplish this.

I started out by selecting all the node's children:

var toSelect = !node.get_selected();

if (toSelect)
                node.select();
            else
                node.unselect();

 children.forEach(function(child) {
                if (toSelect )
                    child.select();                    
                else
                    child.unselect();
            });

This does indeed select all the nodes. The problem though, is that it does not show (they don't turn blue). So I was looking for a way to do this through the Telerik client side API, but failed. So I turned to Jquery:

var tree = $find("rtCustomerGroups");
var nodes = tree.get_nodes();

nodes.forEach(function(node) {
if (node.get_selected())
node.addClass("rtSelected");
else
node.removeClass("rtSelected");

The problem with this approach is that, while it works visually, the browser does not seem to like it - as it's complaining (sometimes) with a typeError saying addClass/removeClass aren't functions.

This also breaks the javascript as the next line, calling the Ajax function, never gets run.

This really bugs me, as the selection really works the way I want, including multi selection with ctrl click.

1 Answer, 1 is accepted

Sort by
0
Bozhidar
Telerik team
answered on 03 Mar 2015, 09:55 AM
Hi,

This thread is identical to the following one:
http://www.telerik.com/forums/i-want-selection-on-the-client-to-cascade-down-preferably-while-allowing-ctrl-clicks-6f05acb7e8b2

I'm closing this one and would ask you to continue the discussion in the other thread.

Regards,
Bozhidar
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
Tags
TreeView
Asked by
C
Top achievements
Rank 1
Answers by
Bozhidar
Telerik team
Share this question
or