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
160
How to make the scroll node work on server side
posted

Hey does anybody know how to make the scroll node work on server side  am loading nodes on demand and even if i set height it doesnt work.

  • 7694
    Suggested Answer
    posted

    Hello,

    You can use the method ScrollNodeIntoView. Please take a look  at sample code below:

    protected void Page_Load(object sender, EventArgs e)

        {

            UltraWebTree1.ScrollNodeIntoView(UltraWebTree1.Nodes[10]);

        }

     

    UltraWebTree1.Nodes[10] is node that want.

     

    Hope this helps

    Ivan Baev