Hi,
I have a top and a bottom Pane, when I drag the splitter bar it hides the content in the bottom Pane, do you have a clue why?
See attachments for print screens.
Code:
I have a top and a bottom Pane, when I drag the splitter bar it hides the content in the bottom Pane, do you have a clue why?
See attachments for print screens.
Code:
| <telerik:RadSplitter ID="RadSplitter1" Runat="server" CssClass="radSplitter" |
| ResizeWithParentPane="False" VisibleDuringInit="false" Width="100%" |
| PanesBorderSize="0" BorderSize="0" Orientation="Horizontal"> |
| <telerik:RadPane id="FilterPane" runat="server" BorderWidth="0" Scrolling="None" CssClass="reportFilter"> |
| <div class="reportFilterWrapper"> |
| <div style="float:right;"> |
| <asp:CheckBox ID="checkBoxColapse" runat="server" Text="<%$ Resources:resources,Report_ColapseAutomatic %>"></asp:CheckBox> |
| </div> |
| <div> |
| <asp:Panel ID="panelReportStart" runat="server"> |
| <span class="smaller"><asp:Literal ID="Literal2" runat="server" Text="<%$ Resources:resources,Label_ReportType %>" /><br /></span> |
| <asp:ListBox ID="listBoxReportType" runat="server" Rows="20" Width="500" |
| AutoPostBack="true" onload="listBoxReportType_Load"> |
| </asp:ListBox> |
| </asp:Panel> |
| <asp:Panel ID="panelReports" runat="server"></asp:Panel> |
| </div> |
| </div> |
| </telerik:RadPane> |
| <telerik:RadSplitBar id="RadSplitbar1" runat="server" CollapseMode="Forward" |
| CollapseExpandPaneText="<%$ Resources:resources,Label_ShowHide %>"></telerik:RadSplitBar> |
| <telerik:RadPane id="ReportPanes" runat="server" Scrolling="None" BorderWidth="0"> |
| <telerik:ReportViewer ID="ReportViewer1" runat="server" Visible="false" |
| Width="100%" Height="800px" ProgressText="<%$ Resources:resources,Report_LoadingText %>"> |
| </telerik:ReportViewer> |
| </telerik:RadPane> |
| </telerik:RadSplitter> |