I have a RadGrid control on my webform and I wanted to just make each row white background colored. But when I do the following
I get a 1px line on the bottom of each Alternating Row. So I have a gray line at the bottom of every 2 lines!
How do i get rid of the line?
Thanks
| <form id="form1" runat="server"> |
| <div> |
| <asp:ScriptManager ID="sc" runat="server"> |
| </asp:ScriptManager> |
| <telerik:RadGrid ID="RadGrid1" runat="server" AutoGenerateColumns="true" OnNeedDataSource="uxShoppingCart_NeedDataSource"> |
| <AlternatingItemStyle BackColor="White" /> |
| </telerik:RadGrid> |
| </div> |
| </form> |
I get a 1px line on the bottom of each Alternating Row. So I have a gray line at the bottom of every 2 lines!
How do i get rid of the line?
Thanks