When putting a flytreeview on a web page like so:
FadeEffect="True" CanBeSelected="false"
OnPopulateNodes="flyTree_PopulateNodes"
Width="100%" Height="250px" />
Is there any way to change the height dynamically in your Page_Load event?
I'm wrapping it inside a user control but I can't figure out how to get to the height property.
If I do this:
divTree.Style.Add("height", strDropdownHeight);
the treeview gets confused and only the background of the treeview is this size...the rest of the treeview draws over everything else on a transparent background and ignores the height.