Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
517
WebTree and ExpandAll
posted

 I have anUltraWebTree on a webpage and is linked to an xmldatasource.  The webtree is populated correctly, but I want the webtree to have all its nodes exapanded when the webpage loads.  How can I do this?  I tried the following code in the Page_Load, but it didn't work.

     protected void Page_Load(object sender, EventArgs e)
    {
        uwtreeTasks.ExpandAll();
    }

Thanks,

John