Home - Forums-.NET - FlyTreeView (ASP.NET) - SelectedNodeChanged is not fired when a child node is selected

FlyTreeView (ASP.NET)

Technical support and KB related to the FlyTreeView control

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

SelectedNodeChanged is not fired when a child node is selected
Link Posted: 09-Mar-2010 08:49
I am trying to use the trail version of the flytreeview control. My application has two panel, left and right. I am having the flytreeview in the left panel and details on the right panel. When a node is selected I would like to refresh the right hand panel with the selected node details, similar to MSDN.

Here is the problem i am having. When i select a node with child nodes since the PopulateNodesOnDemand property set to true, SelectedNodeChanged event is firing and it is loading the child nodes, but I would also like to refresh the details on the right hand panel. Also when I select a node without any child nodes, SelectedNodeChanged event is not fired since PopulateNodesOnDemand is not set to true. Could you please let me know if I need to set any other properties or implement any other treeview events inorder to solve my issue.

Thanks
Link Posted: 10-Mar-2010 11:28
The figured out the solution for this. I just have to set a property on treeview so that it postbacks when a node is selected.

Thanks,