or
<telerik:RadGrid ID="rg_tt_CSMD_Backlog_By_Status_FL" runat="server" AllowSorting="false" GridLines="None" AllowPaging="true" BorderStyle="NotSet" Height="99.9%" Width="99.9%" OnNeedDataSource="rg_tt_CSMD_Backlog_By_Status_FL_NeedDataSource" OnItemDataBound ="rg_tt_CSMD_Backlog_By_Status_ItemDataBound" AutoGenerateColumns="false" HeaderStyle-Wrap="false"> <MasterTableView DataKeyNames="CASES" CommandItemDisplay="None" TableLayout="Auto" HeaderStyle-Font-Bold="true" HeaderStyle-Font-Size="X-Small"> <Columns> <telerik:GridTemplateColumn AllowFiltering="false" UniqueName="imageCol" HeaderStyle-Width="2%" > <ItemTemplate> <a href="../CustomerSupport/CaseViewer.aspx?ID=<%#Eval("CASES")%>"> <asp:Image ImageUrl="~/Images/case.png" ID="imgTest" runat="server" BorderWidth="0px" /> </a> </ItemTemplate> </telerik:GridTemplateColumn> <telerik:GridBoundColumn DataField="CASES" HeaderText="CASE" DataFormatString="<nobr>{0}</nobr>" HeaderStyle-Width="10%" HeaderStyle-Font-Bold="true" HeaderStyle-Font-Size="X-Small"> </telerik:GridBoundColumn> <telerik:GridTemplateColumn AllowFiltering="false" UniqueName="imageappSerial" HeaderStyle-Width="2%"> <ItemTemplate> <a href="../AccountManagement/ProductViewer.aspx?ID=<%#Eval("SERIAL")%>"> <asp:Image ImageUrl="~/Images/server_database.png" ID="imgTest" runat="server" BorderWidth="0px" /> </a> </ItemTemplate> </telerik:GridTemplateColumn> <telerik:GridBoundColumn DataField="appSERIAL" HeaderText="SERIAL" DataFormatString="<nobr>{0}</nobr>" HeaderStyle-Width="10%" HeaderStyle-Font-Bold="true" HeaderStyle-Font-Size="X-Small"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="SITE" HeaderText="SITE" DataFormatString="<nobr>{0}</nobr>" HeaderStyle-Width="35%" HeaderStyle-Font-Bold="true" HeaderStyle-Font-Size="X-Small"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="SUMMARY" HeaderText="SUMMARY" DataFormatString="<nobr>{0}</nobr>" HeaderStyle-Width="48%" HeaderStyle-Font-Bold="true" HeaderStyle-Font-Size="X-Small"> </telerik:GridBoundColumn> </Columns> </MasterTableView> <ClientSettings> </ClientSettings> </telerik:RadGrid><telerik:RadToolTipManager ID="ttm_CSMD_Backlog_By_Status_FL" runat="server" EnableShadow="true" Animation="Resize" HideEvent="ManualClose" Height="70" Width="75" OnAjaxUpdate="OnAjaxUpdate" Position="BottomCenter" RelativeTo="Element" OffsetY="0" OnClientResponseEnd="OnClientResponseEnd"> </telerik:RadToolTipManager>.RadTabStrip
.rtsLevel{
clear:both;
overflow: hidden;
position: relative;
width: 100%;
}
This was pushing the div the style is attached to and therfore my tabs down to the bottom of the page when it was viewed in any non IE browser.
I added the following more specific style to a stylesheet in my theme and the problem was solved.
div.RadTabStrip
.rtsLevel{
clear: none;
overflow: hidden;
position: relative;
width: 100%;
}
<security><requestFiltering><requestLimits maxAllowedContentLength="419440400"/></requestFiltering></security>
this in Telerik.Web.UI.WebResource.axd .<telerik:RadGrid ID="rgProjectBudget" runat="server" AllowFilteringByColumn="true" AllowMultiRowSelection="true" AllowPaging="true" OnNeedDataSource="rgProjectBudget_NeedDataSource" OnDeleteCommand="rgProjectBudget_DeleteCommand" PageSize="50" OnItemDataBound="rgProjectBudget_ItemDataBound" OnPreRender="rgProjectBudget_PreRender" PagerStyle-AlwaysVisible="true" > <ClientSettings Selecting-AllowRowSelect="true"> <ClientEvents OnRowSelected="RowSelected" /> </ClientSettings> <MasterTableView EditMode="InPlace"> <Columns> <telerik:GridBoundColumn DataField="COABudgetDetailID" DataType="System.Int32" HeaderText="COABudgetDetailID" Display="false" UniqueName="COABudgetDetailID" AutoPostBackOnFilter="true"> </telerik:GridBoundColumn> <telerik:GridTemplateColumn HeaderText="Project Budget" UniqueName="SecondaryEntityBudget" CurrentFilterFunction="Contains" AllowFiltering="true" AutoPostBackOnFilter="true"> <ItemStyle Width="20%" /> <ItemTemplate> <asp:TextBox ID="txtBudgetAmount" runat="server" Width="70px" Text='<%# DataBinder.Eval(Container,"DataItem.SecondaryEntityBudget") %>' /> </ItemTemplate> </telerik:GridTemplateColumn> <telerik:GridBoundColumn UniqueName="COAActualAmount" HeaderText="Actual Amount" DataField="COAActualAmount" CurrentFilterFunction="EqualTo" AllowFiltering="true" DataType="System.Double" FilterControlWidth="30%" AutoPostBackOnFilter="true"> <HeaderStyle Width="10%" HorizontalAlign="Left" /> <ItemStyle Width="10%" HorizontalAlign="Left" /> </telerik:GridBoundColumn>