For the time being you can safely use the same scenario with ContentAreaMode set to Div.
Please add "bootstrap" to drop down list of available skins to base a NEW skin on from style builder. I wish to make some color changes (blue to red) but require all the css and image files. Thanks.
Hi Telerik, I've seen your new Theme Builder at http://themebuilder.telerik.com This is wonderful tool for all developer and I love it. So I have a feedback, can you create a Forum for everybody where we can share our Theme Builder in ASP.NET Ajax forum like Visual Style Builder forum's already exists. And a library where the best Theme Builder was pulic by others developer. I think this is good wat for the development of community Telerik Thanks
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())); } } }