How to apply alternate row css in pivot grid?
If there is not any inbuilt method provided, please let me know custom way(s) to avail alternate row css in pivot grid.
Thanks in advance.
1 Answer, 1 is accepted
0
Galin
Telerik team
answered on 08 Feb 2013, 11:49 AM
Hello Amit,
You can achieve this by using CSS 3, which is supported only in modern browsers
.rpgContentZoneDiv tr:nth-child(2n)
{
background: grey;
}
Also, the cross browser solution is to use Js and CSS
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.