or

I have a nested splitter pane and a tab strip located in the lower tab. With ScrollChildren = true, I'm getting what looks like 17px of margin at the bottom of my screen whenever a tab is added to the tab strip in Firefox. Other browsers seem to work fine. If i remove all the tabs, leaving the tab strip, then the white space disappears.
I've attached a cut down version of my code below.
| <telerik:RadSplitter ID="RadSplitter1" runat="server" BorderSize="0" Height="100%" Width="100%" > |
| <telerik:RadPane ID="RadPane1" runat="server" Height="100%" > |
| <telerik:RadSplitter ID="RadSplitter2" runat="server" Orientation="Horizontal" Width="100%" Height="100px" BorderSize="0" > |
| <telerik:RadPane ID="RadPane2" runat="server"> |
| </telerik:RadPane> |
| <telerik:RadPane ID="RadPane3" runat="server" Height="26px"> |
| <telerik:RadTabStrip ID="RadTabStrip1" runat="server" ScrollChildren="true"> |
| <Tabs> |
| <telerik:RadTab Text="Tab 1"></telerik:RadTab> |
| </Tabs> |
| </telerik:RadTabStrip> |
| </telerik:RadPane> |
| </telerik:RadSplitter> |
| </telerik:RadPane> |
| </telerik:RadSplitter> |
I have seen other threads with similar problems, but the solutions for those dont appear to be applicable to this issue.
Thanks in advance.
| <telerik:RadGrid ID="gridAllocations" runat="server" ShowHeader="false" |
| DataSourceID="dsComponentAllocationGroups"> |
| <MasterTableView AutoGenerateColumns="False" DataSourceID="dsComponentAllocationGroups" DataKeyNames="AllocationGroupID" HierarchyDefaultExpanded="True"> |
| <RowIndicatorColumn> |
| <HeaderStyle Width="20px"></HeaderStyle> |
| </RowIndicatorColumn> |
| <ExpandCollapseColumn> |
| <HeaderStyle Width="20px"></HeaderStyle> |
| </ExpandCollapseColumn> |
| <Columns> |
| <telerik:GridTemplateColumn DataField="AllocationGroupDescription" |
| HeaderText="AllocationGroupDescription" |
| SortExpression="AllocationGroupDescription" |
| UniqueName="AllocationGroupDescription"> |
| <ItemTemplate> |
| <asp:label runat="server" ID="lblAllocationTitle" Text='<%# Eval("AllocationGroupDescription") & " - Your allocation is " & Decimal.Round(Eval("Allocation"),1) & " units."%>' Font-Bold="true"></asp:label> |
| </ItemTemplate> |
| </telerik:GridTemplateColumn> |
| </Columns> |
| <DetailTables> |
| <telerik:GridTableView runat="server" Name="gridParentItems" AutoGenerateColumns="False" ShowHeader="true" |
| DataSourceID="dsFinalItems" GridLines="None" Skin="Default" |
| DataKeyNames="ConferenceSubmissionItemID,ConferenceSubmissionItemSponsorshipID"> |
| <RowIndicatorColumn Visible="False"> |
| <HeaderStyle Width="20px"></HeaderStyle> |
| </RowIndicatorColumn> |
| <ExpandCollapseColumn Visible="False" Resizable="False"> |
| <HeaderStyle Width="20px"></HeaderStyle> |
| </ExpandCollapseColumn> |
| <ParentTableRelation> |
| <telerik:GridRelationFields MasterKeyField="AllocationGroupID" DetailKeyField="AllocationGroupID" /> |
| </ParentTableRelation> |
| Protected Sub lnkMoveDown_Click(ByVal sender As Object, ByVal e As System.EventArgs) |
| Try |
| Dim curGridItem As GridItem = CType(CType(sender, LinkButton).Parent.Parent, GridItem) |
| Dim sponsorID As Integer |
| Dim itemsGrid As Telerik.Web.UI.GridTableView |
| itemsGrid = Me.gridAllocations.MasterTableView.DetailTables(0) |
| sponsorID = itemsGrid.DataKeyValues(curGridItem.ItemIndex)("ConferenceSubmissionItemSponsorshipID") |
| Dim curSponsor As New ISAConferenceSubmissionItemSponsor(sponsorID) |
| curSponsor.ChangeComponentOrder(CInt(Me.lblActiveComponent.Text), CInt(CType(sender, LinkButton).CommandArgument) + 1) |
| Me.gridAllocations.DataBind() |
| Catch |
| End Try |
| End Sub |