Telerik Silverlight version: 2012.2.607.1050
RadGridView in the first load data, Row Indicator and row selected style is error.
You can find error in Scrolling 1 Billion Cells(http://demos.telerik.com/silverlight/#GridView/UIVirtualization )
It work well in RadControls for Silverlight Q1 2012 version .
Attach file will display RadGridView work well in same sample Silverlight Q1 2012 version .
.
6 Answers, 1 is accepted
Thank you for the feedback.
We will check the problem and will contact you as soon as we have more information.
Kind regards,
Yordanka
the Telerik team
Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>
Indeed, there is difference in the new version. With this version we added a new state of gridview row - unfocused, e.g. the state of the row when the grid is not focused. Once the grid get the focus, the row state will be changed to selected.
All the best,
Yordanka
the Telerik team
Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>

how can I change the color of the unfocused selected row?
Thanks in advance,
Sven
You can modify the state in the GridViewRow template using Blend. Please refer to our documentation about our Blend support.
All the best,Vlad
the Telerik team
Explore the entire Telerik portfolio by downloading Telerik DevCraft Ultimate.

Hi Vlad,
I have the same question with Sven and I don't want to use Blend. How can I modify the background color of the selected row when my WPF RadGridView is not focused? I use the following style trigger to restyle my rows:
<
Common:RadGridViewWithSelectedItemsEditable.RowStyle
>
<
Style
TargetType
=
"{x:Type telerik:GridViewRow}"
>
<
Style.Triggers
>
<
DataTrigger
Binding
=
"{Binding DataContext.HighLight, RelativeSource={RelativeSource AncestorType=UserControl}}"
Value
=
"True"
>
<
Setter
Property
=
"Background"
Value
=
"Red"
/>
<
Setter
Property
=
"Foreground"
Value
=
"Black"
/>
</
DataTrigger
>
<
DataTrigger
Binding
=
"{Binding DataContext.HighLight, RelativeSource={RelativeSource AncestorType=UserControl}}"
Value
=
"False"
>
<
Setter
Property
=
"Background"
Value
=
"Yellow"
/>
<
Setter
Property
=
"Foreground"
Value
=
"Black"
/>
</
DataTrigger
>
</
Style.Triggers
>
</
Style
>
</
Common:RadGridViewWithSelectedItemsEditable.RowStyle
>
Thanks!
Actually any serious development for both Silverlight and WPF (and now Windows 8 XAML) is impossible without Blend.
Greetings,Vlad
the Telerik team
Explore the entire Telerik portfolio by downloading Telerik DevCraft Ultimate.