Hi all i use radgrid with scrolling but when scrolling is on the header (see the link for more info) of grid above the scroll looks different than the content header and on IE8 horizantal scroll is shown
The html markup of radgrid is below
so how to disable horizantal scroll and headerstyle for vertical scroll like the content header?
Thanks
The html markup of radgrid is below
| <telerik:RadGrid HeaderStyle-Height="20px" BackColor="#ebebeb" ID="GroupSelectListGrid" AutoGenerateColumns="false" |
| runat="server" GridLines="None" Width="450px" TableLayout="Fixed" > |
| <MasterTableView CommandItemDisplay="None" Width="425px" CurrentResetPageIndexAction="SetPageIndexToFirst" |
| Dir="LTR" Frame="Border" TableLayout="Fixed"> |
| <Columns> |
| <telerik:GridBoundColumn DataField="Id" Visible="false" DataType="system.string" |
| ReadOnly="True" SortExpression="Id" UniqueName="Id"> |
| </telerik:GridBoundColumn> |
| <telerik:GridTemplateColumn ItemStyle-HorizontalAlign="Center" ItemStyle-Width="20px" HeaderStyle-Width="20px" UniqueName="Selection"> |
| <ItemTemplate> |
| <asp:CheckBox ID="SelectGroupCheckBox" Width="14" runat="server" AutoPostBack="false" /> |
| </ItemTemplate> |
| </telerik:GridTemplateColumn> |
| <telerik:GridBoundColumn DataField="Name" DataType="system.string" HeaderText="Adı" |
| ItemStyle-Width="300" HeaderStyle-Width="400" ReadOnly="True" SortExpression="Name" UniqueName="Name"> |
| </telerik:GridBoundColumn> |
| </Columns> |
| <NoRecordsTemplate> |
| Listelenecek Kayıt Bulunmadı</NoRecordsTemplate> |
| </MasterTableView> |
| <ClientSettings> |
| <Scrolling AllowScroll="True" UseStaticHeaders="True" SaveScrollPosition="True" FrozenColumnsCount="1"> |
| </Scrolling> |
| </ClientSettings> |
| </telerik:RadGrid> |
so how to disable horizantal scroll and headerstyle for vertical scroll like the content header?
Thanks