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
RadSplitter provides a flexible server-side API that allows you to create RadSlidingZone objects directly from the code behind.
See the "Server-side API" example for more info on the methods you can use.
<%@ Page Language="c#" CodeFile="DefaultCS.aspx.cs" AutoEventWireup="true" Inherits="Telerik.Web.Examples.Splitter.SP_DynamicObjectCreation.DefaultCS" %> <!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"> <h2> Dynamically Created SlidingZone </h2> <telerik:RadSplitter RenderMode="Lightweight" ID="RadSplitter1" runat="server" Height="400" Width="800"> <telerik:RadPane ID="LeftPane" runat="server" Width="22" Scrolling="None"> <%-- here will be added dynamically the sliding zone --%> </telerik:RadPane> <telerik:RadSplitBar ID="RadSplitbar1" runat="server"> </telerik:RadSplitBar> <telerik:RadPane ID="RightPane" runat="server"> End Pane </telerik:RadPane> </telerik:RadSplitter> </div> </form> </body> </html>