Alternating Row style of RadGrid is not applied when using Bootstrap skin.
Steps to reproduce:
For all other Skins these approaches work:
div.RadGrid tr.rgAltRow {
background-color: aqua;
}
Or:
<AlternatingItemStyle BackColor="Aqua" />
The reason probably is because there is >td directive built-in, which needs to be overridden manually in order for the styling to take effect (this works):
div.RadGrid tr.rgAltRow > td {
background-color: aqua;
}
A possible workaround for this issue is available in the following forum post:
https://www.telerik.com/forums/alternatingitemstyle-5e16887f3085#odVQBomUikiIJfrxeBQrww