In my grid the headers are lining up with the columns below them. What is even more interesting is when I set....
GridLines="Both" |
If I grab ANY column and move it ever so slightly the columns and headers line up.
Here are my settings. Keep in mind I need to have Grouping, Multiple Sort, Column Resizing, and Scrolling set to TRUE!!
<telerik:RadGrid ID="RadGrid1" |
AllowMultiRowSelection="true" |
AllowSorting="true" |
AllowPaging="false" |
AutoGenerateColumns="False" |
AlternatingItemStyle-HorizontalAlign="Center" |
ItemStyle-HorizontalAlign="Center" |
BackColor="#ffffff" |
EnableEmbeddedSkins="false" |
GridLines="Both" |
GroupingEnabled="true" |
Height="370px" |
OnSortCommand="RadGrid1_SortCommand" |
OnNeedDataSource="RadGrid1_NeedDataSource" |
OnItemDataBound="RadGrid1_ItemDataBound" |
OnItemCommand="RadGrid1_ItemCommand" |
ShowHeader="true" |
ShowGroupPanel="true" |
ShowStatusBar="true" |
Skin="MySkin" |
Width="99%" |
runat="server"> |
<MasterTableView DataKeyNames="ID" AllowMultiColumnSorting="True" Width="100%"> |
<Columns> |
<telerik:GridClientSelectColumn UniqueName="ClientSelectColumn" HeaderStyle-Width="50" /> |
<telerik:GridBoundColumn SortExpression="ROWNUM" HeaderText="Priority" HeaderButtonType="TextButton" HeaderStyle-Width="50" ItemStyle-Width="50" DataField="ROWNUM" /> |
<telerik:GridBoundColumn SortExpression="COMPANY_NAME" HeaderText="Company Name" HeaderButtonType="TextButton" HeaderStyle-Width="150" ItemStyle-Width="150" ItemStyle-HorizontalAlign="Left" DataField="COMPANY_NAME" /> |
</Columns> |
</MasterTableView> |
<ClientSettings AllowColumnsReorder="true" AllowDragToGroup="True" ReorderColumnsOnClient="true" AllowRowHide="true"> |
<Scrolling AllowScroll="True" UseStaticHeaders="True" SaveScrollPosition="True"></Scrolling> |
<Resizing AllowColumnResize="True" AllowRowResize="False" EnableRealTimeResize="True" ResizeGridOnColumnResize="True"></Resizing> |
<Selecting AllowRowSelect="True"></Selecting> |
</ClientSettings> |
Any help you can give me would be great!
Notice the Skin I made is the exact same as your Hay with just a different header background image everything else is the same in the css.