There is an odd display issue with the RadGrid that I am seeing.
It seems that if you have a mix of fixed width columns and dynamic width columns, that the headings and items no longer line up when the Grid scrollbar appears.
Bascically, it appears that as you have columns (left to right), that are fixed, all is good and they line up, but all columns following a dynamic column no longer line up and the rest of the columns follow suit. Also, there appears to be a blank section towards the end of the grid that looks sized to match up with the scroll bar, but it doesn't. Instead there is un skinned heading above the scrollbar. I have an image, but wasn't sure how to get that to you.
In my sample below, all columns after the Description column fail to line up with their headings.
<telerik:RadGrid ID="rgAttributes" runat="server" Skin="Vista" Width="100%" AutoGenerateColumns="false"> | |
<ClientSettings> | |
<Scrolling AllowScroll="True" UseStaticHeaders="True" SaveScrollPosition="True" ScrollHeight="100px"> | |
</Scrolling> | |
</ClientSettings> | |
<MasterTableView TableLayout="Fixed"> | |
<Columns> | |
<telerik:GridCheckBoxColumn DataField="IsRequired" HeaderText="Req" UniqueName="IsRequired"> | |
<HeaderStyle Width="30px"/> | |
<ItemStyle Wrap="false" Width="30px"/> | |
<FooterStyle Width="30px"/> | |
</telerik:GridCheckBoxColumn> | |
<telerik:GridBoundColumn DataField="Description" HeaderText="Description" UniqueName="Description"> | |
<HeaderStyle Width="100%" /> | |
<ItemStyle Wrap="false" Width="100%" /> | |
<FooterStyle Width="100%" /> | |
</telerik:GridBoundColumn> | |
<telerik:GridBoundColumn DataField="Display" HeaderText="Display" UniqueName="Display"> | |
<HeaderStyle Width="100px"/> | |
<ItemStyle Wrap="false" Width="100px"/> | |
<FooterStyle Width="100px"/> </telerik:GridBoundColumn> | |
<telerik:GridBoundColumn DataField="Value" HeaderText="Value" UniqueName="Value"> | |
<HeaderStyle Width="100px"/> | |
<ItemStyle Wrap="false" Width="100px"/> | |
<FooterStyle Width="100px"/> </telerik:GridBoundColumn> | |
</Columns> | |
</MasterTableView> | |
</telerik:RadGrid> |
Thanks!
Michael