Completed
Last Updated: 04 Oct 2018 08:04 by Andy Green
ADMIN
Vessy
Created on: 27 Nov 2017 13:13
Category: Grid
Type: Bug Report
1
Alternating Row style of RadGrid is not applied when using Bootstrap skin
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
1 comment
Andy Green
Posted on: 28 Nov 2017 18:14
Not a big issue but be nice to fix and get it off the list.

Andy