Completed
Last Updated: 15 Oct 2015 09:00 by ADMIN
ADMIN
Peter Filipov
Created on: 13 Oct 2015 10:42
Category: UI for ASP.NET AJAX
Type: Bug Report
1
When nodes of the EmbeddedTree are expanded/collapsed the drop down is scrolled to the top
Resize the window in order to activate the screen boundary detection. Expand the first and the second root nodes then scroll to the bottom and expand the last root node. Notice that the drop down is scrolled to the top.



  <telerik:RadDropDownTree runat="server"ID="RadDropDownTree1" >
    </telerik:RadDropDownTree>

    protected void Page_Load(object sender, EventArgs e)
    {
        var tree = RadDropDownTree1.EmbeddedTree;

        for (int i = 0; i < 10; i++)
        {

            tree.Nodes.Add(new RadTreeNode("Roo t" + i.ToString()));
            for (int j = 0; j < 10; j++)
            {
                tree.Nodes[i].Nodes.Add(new RadTreeNode("Sub" + i.ToString() + " " + j.ToString()));
            }

        }
    }
0 comments