This question is locked. New answers and comments are not allowed.
Hello,
I've been using all the hacks described in this forum's relevant threads to set the background of the selected Grid row, along the following lines:
<Style TargetType="telerikGridPrimitives:DataGridCurrencyControl">
<Setter Property="Background" Value="Transparent"/>
</Style>
<Style TargetType="telerikGridPrimitives:SelectionRegionBackgroundControl">
<Setter Property="Background" Value="{StaticResource SelectionBrush}"/>
<Setter Property="BorderThickness" Value="0"/>
</Style>
<Style TargetType="telerikGridPrimitives:SelectionRegionBorderControl">
<Setter Property="BorderBrush" Value="Transparent"/>
</Style>
It has been working with the previous versions, but now I've upgraded to the latest Telerik Controls for Universal Apps (v.2014.3.1203.45), and what I see is the SelectionBrush solid colour completely covering the row's content.
The only workaround I was able to find is to set SelectionRegionBackgroundControl's opacity to lower levels (say, 0.5) to see the row's content.
I suspect this is an indication of the fact that in this latest version SelectionRegionBackgroundControl is actually rendered on top of the other layers (instead of being the bottom most as it should).
Whether this is the case or now, please suggest a temporary workaround until this issue is fixed a future release.
I've been using all the hacks described in this forum's relevant threads to set the background of the selected Grid row, along the following lines:
<Style TargetType="telerikGridPrimitives:DataGridCurrencyControl">
<Setter Property="Background" Value="Transparent"/>
</Style>
<Style TargetType="telerikGridPrimitives:SelectionRegionBackgroundControl">
<Setter Property="Background" Value="{StaticResource SelectionBrush}"/>
<Setter Property="BorderThickness" Value="0"/>
</Style>
<Style TargetType="telerikGridPrimitives:SelectionRegionBorderControl">
<Setter Property="BorderBrush" Value="Transparent"/>
</Style>
It has been working with the previous versions, but now I've upgraded to the latest Telerik Controls for Universal Apps (v.2014.3.1203.45), and what I see is the SelectionBrush solid colour completely covering the row's content.
The only workaround I was able to find is to set SelectionRegionBackgroundControl's opacity to lower levels (say, 0.5) to see the row's content.
I suspect this is an indication of the fact that in this latest version SelectionRegionBackgroundControl is actually rendered on top of the other layers (instead of being the bottom most as it should).
Whether this is the case or now, please suggest a temporary workaround until this issue is fixed a future release.