When allowScroll is true and useStaticHeaders is also true, the header div does not occupy 100% of the width of the containing div in FIrefox 3 (FF3). It works ok in Firefox 2, IE7, and Opera 9. In FF3, the grid header div stops where the scrollbar would be if the header div had scrolling.
| <telerik:radgrid id="RadGrid1" runat="server" skin="Office2007" autogeneratecolumns="false" onneeddatasource="RadGrid1_NeedDataSource" width="350px"> |
| <clientsettings> |
| <scrolling allowscroll="true" scrollheight="150px" usestaticheaders="true" /> |
| </clientsettings> |
| <mastertableview> |
| <columns> |
| <telerik:gridbuttoncolumn datatextfield="link" headertext="Test Header" buttontype="LinkButton" /> |
| </columns> |
| </mastertableview> |
| </telerik:radgrid> |
| protected void RadGrid1_NeedDataSource(object source, Telerik.Web.UI.GridNeedDataSourceEventArgs e) { |
| DataTable dt = new DataTable(); |
| dt.Columns.Add("link", typeof(String)); |
| for (int i = 0; i < 50; i++) { |
| DataRow row = dt.NewRow(); |
| row["link"] = "Test Link"; |
| dt.Rows.Add(row); |
| } |
| RadGrid1.DataSource = dt; |
| } |
