Home - Forums-.NET - FlyTreeView (ASP.NET) - getting selected nodes from client side

FlyTreeView (ASP.NET)

Technical support and KB related to the FlyTreeView control

This forum related to following products: FlyTreeView for ASP.NET

getting selected nodes from client side
Link Posted: 22-Aug-2005 06:44
Is it possible to determine which nodes in a FlyTreeView are selected on the client side using javascript?  I want to add the selected node(s) to a table.  The info in the table will then be submitted with a separate button so I can't use the FlyTreeView window events to get ahold of the nodes.  Any suggestions??  Thanks!
Link Posted: 22-Aug-2005 16:52
Do you mean checkboxes?

Probably you should loop throug yourFlyTreeView.Nodes client-side collection.
And recurently loop throug all the node.Nodes for each node, while collecting the nodes having "node.IsChecked == true".