In telerik gridview/row detail the preview background is Black by default. The problem is that it has header in light gray color. Is there way to turn it off.? So that there is one color backgroung in preview.
1 Answer, 1 is accepted
0
Milan
Telerik team
answered on 10 Feb 2010, 07:33 AM
Hello Khurram Ilyas,
You could place another element in the template that will hide the default background - for example, force a red background you could try something like:
<telerik:RadGridView.RowDetailsTemplate>
<DataTemplate>
<BorderHeight="400"Background="Red">
<TextBlockText="{Binding Name}"/>
</Border>
</DataTemplate>
</telerik:RadGridView.RowDetailsTemplate>
Greetings,
Milan
the Telerik team
Watch a video
on how to optimize your support resource searches and
check out more tips
on the blogs.
Follow the status of features or bugs in
PITS
and vote for them to affect their priority.