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

Child nodes are not displaying.

1 Answer 31 Views
TreeListView
This is a migrated thread and some comments may be shown as answers.
Rakesh
Top achievements
Rank 1
Rakesh asked on 12 Feb 2011, 07:51 PM
Hi,

I am using the RadTreeListView  and i am binding the itemsource to Collectionobject of my viewmodel.
but i am binding the ChildTableDefinitions to diiferent collection item (here Items) but its only showing the parent nodes not its child nodes.
Please let me know what can be done.


Thanks,
Rakesh K

For ex :
public class WarehouseItem
{
   
public WarehouseItem( string name, int count )
   {
       
this.Name = name;
       
this.Count = count;
       
this.Items = new ObservableCollection<WarehouseItem>();
   }
   
public string Name
   {
       get;
       set;
   }
   
public ObservableCollection<ContainerItems> Items
   {
       get;
       set;
   }
   
public int Count
   {
       get;
       set;
   }
}

1 Answer, 1 is accepted

Sort by
0
Vlad
Telerik team
answered on 16 Feb 2011, 04:28 PM
Hello,

 Can you post more info how exactly you've bound the child hierarchy to your property?

Kind regards,
Vlad
the Telerik team
Tags
TreeListView
Asked by
Rakesh
Top achievements
Rank 1
Answers by
Vlad
Telerik team
Share this question
or