Hi,
I want to show a RowDetails on a RadTreeListView but only when a row is selected AND only on spesifics rows.
So i try to bind the DetailsVisibility like this:
<telerik:RadTreeListView.RowStyle>
<Style TargetType="telerik:TreeListViewRow">
<Setter Property="DetailsVisibility">
<Setter.Value>
<MultiBinding Converter="{StaticResource ParameterStepSynchronizeRowDetailsVisibilityConverter}">
<Binding Path="HasDetails"></Binding>
<Binding Path="GridSelected"></Binding>
</MultiBinding>
</Setter.Value>
</Setter>
<Setter Property="IsSelected" Value="{Binding GridSelected, Mode=OneWayToSource}"></Setter>
</Style>
</telerik:RadTreeListView.RowStyle>
It works fine but when i scroll down until can't see this item and them i go top, i don't know why but when my selection change my converter is never call again.
How can i perform this?
Thank you in advance
I want to show a RowDetails on a RadTreeListView but only when a row is selected AND only on spesifics rows.
So i try to bind the DetailsVisibility like this:
<telerik:RadTreeListView.RowStyle>
<Style TargetType="telerik:TreeListViewRow">
<Setter Property="DetailsVisibility">
<Setter.Value>
<MultiBinding Converter="{StaticResource ParameterStepSynchronizeRowDetailsVisibilityConverter}">
<Binding Path="HasDetails"></Binding>
<Binding Path="GridSelected"></Binding>
</MultiBinding>
</Setter.Value>
</Setter>
<Setter Property="IsSelected" Value="{Binding GridSelected, Mode=OneWayToSource}"></Setter>
</Style>
</telerik:RadTreeListView.RowStyle>
It works fine but when i scroll down until can't see this item and them i go top, i don't know why but when my selection change my converter is never call again.
How can i perform this?
Thank you in advance