Home - Forums-.NET - FlyTreeView (ASP.NET) - Maintaining the collapsed/expanded state in a masterpage

FlyTreeView (ASP.NET)

Technical support and KB related to the FlyTreeView control

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

Maintaining the collapsed/expanded state in a masterpage
Link Posted: 26-Aug-2007 20:58
I solved the problem. At least I think I did...


sn = nodes.FindByValue(s, true);


should be;


sn = nodes.FindByValue(s, false);


Does this make sense?
Link Posted: 26-Aug-2007 22:48
Yes, because in case of FindByValue(.., true) the search is performed recursively.
Link Posted: 18-Sep-2007 04:00
Sorry to hijack your thread, but ...

What if I want to maintain the expanded/collapsed state of my entire tree between redirects?

Please tell me I do not have to write two routines.    One to serialize the expanded/collapsed state of the tree and another to deserialize the state.

Andrew