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.