Hello,
There's a problem when using a SlidingZone inside a Splitter Pane, if the height of the Splitter exceeds 10000. Our production page includes a RadDockLayout, and we dynamically size the Splitter to the height of the layout, but this simple example demonstrates the problem:
There's a problem when using a SlidingZone inside a Splitter Pane, if the height of the Splitter exceeds 10000. Our production page includes a RadDockLayout, and we dynamically size the Splitter to the height of the layout, but this simple example demonstrates the problem:
<%@ Page Language="vb" %><%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head id="Head1" runat="server"> <title>Test</title></head><body> <form id="form1" runat="server"> <telerik:RadScriptManager ID="RadScriptManager1" EnablePageMethods="true" runat="server"> </telerik:RadScriptManager> <telerik:RadSplitter ID="RadSplitter1" runat="server" Orientation="Vertical" Width="100%" Height="10050"> <telerik:RadPane ID="RadPane1" runat="server" Scrolling="None" Width="100%"> This is the Left pane </telerik:RadPane> <telerik:RadPane ID="RadPane2" runat="server" Scrolling="None" Width="22px"> <telerik:RadSlidingZone ID="RadSlidingZone1" runat="server" SlideDirection="Left"> <telerik:RadSlidingPane ID="RadSlidingPane1" Title="Menu" runat="server" EnableDock="false" BackColor="Red" Width="300px" PersistScrollPosition="False" Scrolling="None"> </telerik:RadSlidingPane> </telerik:RadSlidingZone> </telerik:RadPane> </telerik:RadSplitter> </form></body></html>