Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Build JavaScript UI
Javascript
Telerik
Build modern .NET business apps
.Net Web
Cross-Platform
Desktop
Reporting and Documents
AI for Developers & IT
Ensure AI program success
AI Coding
AI Engineering
Additional Tools
Enhance the developer and designer experience
Testing & Mocking
Debugging
UI/UX Tools
CMS
Free Tools
Support and Learning
Productivity and Design Tools
New to Telerik UI for ASP.NET AJAX? Download free 30-day trial
You can set the pane to be docked when the page is loaded using the DockedPaneId property of the RadSlidingZone control.
If you need the pane to be only expanded, but not docked use the ExpandedPaneId property of the RadSlidingZone control.
<%@ Page Language="c#" AutoEventWireup="false" %> <!DOCTYPE html> <html xmlns='http://www.w3.org/1999/xhtml'> <head runat="server"> <title>Telerik ASP.NET Example</title> </head> <body> <form id="form1" runat="server"> <telerik:RadScriptManager runat="server" ID="RadScriptManager1" /> <telerik:RadSkinManager ID="RadSkinManager1" runat="server" ShowChooser="true" /> <div class="demo-container size-wide"> <telerik:RadSplitter RenderMode="Lightweight" ID="RadSplitter1" runat="server" Height="400" Width="800"> <telerik:RadPane ID="LeftPane" runat="server" Width="22" Scrolling="None"> <telerik:RadSlidingZone ID="SlidingZone1" runat="server" Width="22" DockedPaneId="Pane1" ExpandedPaneId="Pane2"> <telerik:RadSlidingPane ID="Pane1" Title="Pane1" runat="server" Width="300" MinWidth="130"> This pane is set to be initially docked when the page is loaded. <br /> <br /> Use the <strong>DockedPaneId</strong> property of the <strong>RadSlidingZone</strong> to control this behavior. </telerik:RadSlidingPane> <telerik:RadSlidingPane ID="Pane2" Title="Pane2" runat="server" Width="150" MinWidth="130"> This pane is set to be initially expanded when the page is loaded. <br /> <br /> Use the <strong>ExpandedPaneId</strong> property of the <strong>RadSlidingZone</strong> to control this behavior. </telerik:RadSlidingPane> <telerik:RadSlidingPane ID="Pane3" Title="Pane3" runat="server" Width="150" MinWidth="130"> This pane has the default behavior and is hidden on page load. </telerik:RadSlidingPane> </telerik:RadSlidingZone> </telerik:RadPane> <telerik:RadSplitBar ID="RadSplitbar1" runat="server"> </telerik:RadSplitBar> <telerik:RadPane ID="MainPane" runat="server"> Main Pane </telerik:RadPane> </telerik:RadSplitter> </div> </form> </body> </html>