This is a migrated thread and some comments may be shown as answers.

All itens expanded

1 Answer 80 Views
TreeList
This is a migrated thread and some comments may be shown as answers.
Fred
Top achievements
Rank 1
Fred asked on 11 Nov 2010, 01:18 PM
   How can i load the TreeList with all itens expanded? Also, can i expand itens client side only like in this demo with radgrid with group expressions ?

Thanks in advance,
Fred

1 Answer, 1 is accepted

Sort by
0
Tsvetina
Telerik team
answered on 12 Nov 2010, 11:52 AM
Hi Fred,

You can currently expand all itmes server-side only by using the ExpandAllItems() method in the Page_Load event handler:
protected void Page_Load(object sender, EventArgs e)
  {
      if (!Page.IsPostBack)
      {
          RadTreeList1.ExpandAllItems();
      }
  }


Regards,
Tsvetina
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
TreeList
Asked by
Fred
Top achievements
Rank 1
Answers by
Tsvetina
Telerik team
Share this question
or