Hi,
Are there any way to rebind HierarchyChildTemplate ? I have been successfully rebind Master Grid but could not rebind hierarchy child.
Please also post a example.
Thanks.
1 Answer, 1 is accepted
0
Milan
Telerik team
answered on 17 Jun 2009, 08:47 AM
Hi Simone Reeve,
Could you provide more information about your scenario like what type of chierarchy are you using? Are you trying to provide a new HierarchyChildTemplate runtime, or just trying to refresh the data in the child grids?
You could try this:
var source = this.radGridView.ItemsSource;
this.radGridView.ItemsSource = null;
this.radGridView.ItemsSource = source;
That should rebind both the master grid and all of its children.