Hi,
Previously I was using RadGridView with RadDataForm.
When IsSynchronizedWithCurrentItem property setted to True value, this controls working synchronous.
I needed Hierarchical items on some modules and I solved this problem with RadGridView.
But hierarchical data very complex for last user on RadGridView, that's not user-friendly.
I decided on the RadTreeListView after that, and I solved this with hierarchical TreeListView.
But there's a problem, IsSynchronizedWithCurrentItem setted True but RadTreeListView with RadDataForm not working synchronous.
How can solve this problem?
<telerik:RadTreeListView x:Name="mRadTreeListView"
IsReadOnly="True"
AutoExpandItems="True"
AutoGenerateColumns="False"
CanUserFreezeColumns="False"
ItemsSource="{Binding Items}"
IsSynchronizedWithCurrentItem="True"
RowIndicatorVisibility="Collapsed"
RowDetailsVisibilityMode="Collapsed">
<telerik:RadTreeListView.ChildTableDefinitions>
<telerik:TreeListViewTableDefinition ItemsSource="{Binding Children}" />
</telerik:RadTreeListView.ChildTableDefinitions>
</telerik:RadTreeListView>
<telerik:RadDataForm x:Name="mRadDataForm"
ItemsSource="{Binding Items}"
VerticalAlignment="Top"
LabelPosition="Above"
AutoGenerateFields="False"
CommandButtonsVisibility="All"
AutoCommit="True">
</telerik:RadDataForm>
Previously I was using RadGridView with RadDataForm.
When IsSynchronizedWithCurrentItem property setted to True value, this controls working synchronous.
I needed Hierarchical items on some modules and I solved this problem with RadGridView.
But hierarchical data very complex for last user on RadGridView, that's not user-friendly.
I decided on the RadTreeListView after that, and I solved this with hierarchical TreeListView.
But there's a problem, IsSynchronizedWithCurrentItem setted True but RadTreeListView with RadDataForm not working synchronous.
How can solve this problem?
<telerik:RadTreeListView x:Name="mRadTreeListView"
IsReadOnly="True"
AutoExpandItems="True"
AutoGenerateColumns="False"
CanUserFreezeColumns="False"
ItemsSource="{Binding Items}"
IsSynchronizedWithCurrentItem="True"
RowIndicatorVisibility="Collapsed"
RowDetailsVisibilityMode="Collapsed">
<telerik:RadTreeListView.ChildTableDefinitions>
<telerik:TreeListViewTableDefinition ItemsSource="{Binding Children}" />
</telerik:RadTreeListView.ChildTableDefinitions>
</telerik:RadTreeListView>
<telerik:RadDataForm x:Name="mRadDataForm"
ItemsSource="{Binding Items}"
VerticalAlignment="Top"
LabelPosition="Above"
AutoGenerateFields="False"
CommandButtonsVisibility="All"
AutoCommit="True">
</telerik:RadDataForm>