This question is locked. New answers and comments are not allowed.
Is it possible to make the GridView recursively display an unlimited level of hierarchies? I have tried setting the ChildGridTemplate to itself (see code below), but that does not work.
/Henrik
<DataTemplate x:Key="ChildGridTemplate"> |
<telerikgrid:RadGridView ItemsSource="{Binding ChildEntities}" |
HierarchyChildTemplate="{StaticResource ChildGridTemplate}"> |
/Henrik