This question is locked. New answers and comments are not allowed.
Hi,
i'm using controls library for SL3 (Product version 2010.1.0309.1030) and currently i want to achieve this kind of functionality in radGridView:
user selects row, and can see expanded row details, but selected row should be hidden. What and how i should define in xam'l to achieve this? Is this possible at all? I have ControlTemplate for my gridViewRow, and tried to do it like this:
<VisualState x:Name="Selected">
<Storyboard>
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="DataCellsPresenter" Storyboard.TargetProperty="Visibility">
<DiscreteObjectKeyFrame KeyTime="0:0:0" Value="Collapsed"/>
</ObjectAnimationUsingKeyFrames>
</Storyboard>
</VisualState>
but it hides just cells presenter, this means that i still can see the row just without cells.. can't find how can collapse entire row...
thanks
i'm using controls library for SL3 (Product version 2010.1.0309.1030) and currently i want to achieve this kind of functionality in radGridView:
user selects row, and can see expanded row details, but selected row should be hidden. What and how i should define in xam'l to achieve this? Is this possible at all? I have ControlTemplate for my gridViewRow, and tried to do it like this:
<VisualState x:Name="Selected">
<Storyboard>
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="DataCellsPresenter" Storyboard.TargetProperty="Visibility">
<DiscreteObjectKeyFrame KeyTime="0:0:0" Value="Collapsed"/>
</ObjectAnimationUsingKeyFrames>
</Storyboard>
</VisualState>
but it hides just cells presenter, this means that i still can see the row just without cells.. can't find how can collapse entire row...
thanks