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.
Telerik
Build great .NET business apps
Net Web
Cross-Platform
Desktop
Reporting and Documents
Testing & Mocking
Debugging
Build JavaScript UI
Javascript
AI for Developers & IT
Ensure AI program success
AI Coding
Additional Tools
Enhance the developer and designer experience
UI/UX Tools
Free Tools
CMS
Support and Learning
Productivity and Design Tools
New to Telerik UI for ASP.NET AJAX? Download free 30-day trial
You can enable/disable the docking and resizing of the sliding panes using the EnableResize and EnableDock properties.
<%@ 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"> <telerik:RadSlidingPane ID="Pane1" Title="Pane1" runat="server" Width="150" EnableResize="false"> This pane has the <strong>EnableResize</strong> property set to false.<br /> The default value of the property is <strong>true</strong>.<br /> <br /> You can dock the pane to see that even when docked the pane is still not resizable. </telerik:RadSlidingPane> <telerik:RadSlidingPane ID="Pane2" Title="Pane2" runat="server" Width="150" EnableDock="false"> This pane has the <strong>EnableDock</strong> property set to false.<br /> The default value of the property is <strong>true</strong>.<br /> <br /> You can only resize and close this pane. </telerik:RadSlidingPane> <telerik:RadSlidingPane ID="Pane3" Title="Pane3" runat="server" Width="150" EnableDock="false" EnableResize="false"> This pane has both the <strong>EnableDock</strong> and <strong>EnableResize</strong> properties set to false.<br /> The default value of both properties is <strong>true</strong>.<br /> <br /> You can only close the pane. </telerik:RadSlidingPane> </telerik:RadSlidingZone> </telerik:RadPane> <telerik:RadSplitBar ID="RadSplitbar1" runat="server"> </telerik:RadSplitBar> <telerik:RadPane ID="MiddlePane" runat="server"> Main Pane </telerik:RadPane> </telerik:RadSplitter> </div> </form> </body> </html>