Home - Forums-.NET - FlyTreeView (ASP.NET) - Refresh FlyTreeView

FlyTreeView (ASP.NET)

Technical support and KB related to the FlyTreeView control

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

Refresh FlyTreeView
Link Posted: 05-Dec-2005 09:20
I am using a FlyTreeView with FlyNodeSet. I populate the tree nodes with data from a data base, so when i change the data in the data base, I want to change the correspondet node, but without clear all the tree.

Is it possible to I force a especific node be reloaded ?

Thanks,

Jackson Carvalho
Link Posted: 05-Dec-2005 23:48
Jackson,

Yes, you just need to clear its Nodes collection by yourNode.Nodes.Clear() method. And this will make the node to download its child nodes using NodeSrc property again.
Link Posted: 07-Dec-2005 05:32
Thanks, it's working !

Jackson