I have the following RadGrid:
With the following CSS:
But the resulting grid has a grey background, a border, and when a scroll appears it seems to show a grey area where the horizontal scroll would show if it is needed... though its not in my code.
What am I doing wrong?
| <telerik:RadGrid ID="grdContractItems" runat="server" |
| CssClass="grdContractItems" AutoGenerateColumns="False" GridLines="Both" |
| ShowHeader="true" |
| onitemdatabound="grdContractItems_ItemDataBound" Height="250px"> |
| <ClientSettings> |
| <Scrolling AllowScroll="true" UseStaticHeaders="true" SaveScrollPosition="true" FrozenColumnsCount="1" /> |
| </ClientSettings> |
With the following CSS:
| .grdContractItems |
| { |
| position: relative; |
| width: 600px; |
| float: left; |
| clear: left; |
| background-color: White; |
| border: solid 0px black; |
| } |
But the resulting grid has a grey background, a border, and when a scroll appears it seems to show a grey area where the horizontal scroll would show if it is needed... though its not in my code.
What am I doing wrong?