I have a nested splitter set up using the following code:
In my header, I have a RadMenu control. The problem is that the menus items drop down behind the "BottomPane" RadPane. I've tried changing the z-order using CSS on the RadMenu control and the menu item that drops down, but that doesn't work. Please advise.
Thanks,
Matt
| <telerik:RadSplitter ID="RadSplitter1" runat="server" Skin="WebBlue" Orientation="Horizontal" Height="100%" Width="100%"> | |
| <telerik:RadPane ID="TopPane" runat="server" Height="75px" Scrolling="none"> | |
| <div id="Header"> | |
| <uc1:Header ID="Header1" runat="server" /> | |
| </div> | |
| </telerik:RadPane> | |
| <telerik:RadPane ID="BottomPane" runat="server" Scrolling="none"> | |
| <telerik:RadSplitter ID="RadSplitter2" Skin="WebBlue" Orientation="Vertical" | |
| runat="server" LiveResize="true"> | |
| <telerik:RadPane ID="LeftPane" runat="server" Width="300px" MinWidth="200" MaxWidth="800"> | |
| <div id="NavTree"> | |
| <asp:ContentPlaceHolder ID="ContentLeft" runat="server"> | |
| </asp:ContentPlaceHolder> | |
| </div> | |
| </telerik:RadPane> | |
| <telerik:RadSplitBar ID="RadSplitBar1" runat="server" /> | |
| <telerik:RadPane ID="MainPane" runat="server"> | |
| <div id="OuterContentArea"> | |
| <asp:contentplaceholder id="ContentMain" runat="server"> | |
| </asp:contentplaceholder> | |
| </div> | |
| </telerik:RadPane> | |
| </telerik:RadSplitter> | |
| </telerik:RadPane> | |
| </telerik:RadSplitter> |
In my header, I have a RadMenu control. The problem is that the menus items drop down behind the "BottomPane" RadPane. I've tried changing the z-order using CSS on the RadMenu control and the menu item that drops down, but that doesn't work. Please advise.
Thanks,
Matt