I'm having trouble changing the background colors for alternating rows. (Or the regular rows too I guess)
I have tried:
and
The ForeColor properties work fine, so I know that some part of it is working, but nothing I do changes the background color. What am I doing wrong?
Edit: We're using the Q3 2008 RadGrid release
Edit 2: Never mind. I figured this out. Another developer had coded some colors directly into the cs file.
I have tried:
| <ItemStyle BackColor="Black" ForeColor="Red" /> <AlternatingItemStyle BackColor="White" /> |
and
| tr.GridAltRow_Default |
| { |
| color: Black; |
| background-color: White; |
| background-image: none; |
| } |
The ForeColor properties work fine, so I know that some part of it is working, but nothing I do changes the background color. What am I doing wrong?
Edit: We're using the Q3 2008 RadGrid release
Edit 2: Never mind. I figured this out. Another developer had coded some colors directly into the cs file.