New to Kendo UI for jQuery? Start a free 30-day trial
Getting Started with the Splitter
Updated on May 21, 2025
This guide demonstrates how to get up and running with the Kendo UI for jQuery Splitter.
After the completion of this guide, you will achieve the following end result:
Loading ...
1. Create a div Element
First, create a <div> element with two or more <div> children.
html
<div id="splitter">
<div>Pane A</div>
<div>Pane B</div>
<div>Pane C</div>
</div>
2. Initialize the Splitter
In this step, you'll initialize the Splitter component from the parent <div> element.
- Initialize the Splitter within a
$(document).ready()statement.- The Splitter must be visible at the time of initialization. If the component nested in a hidden container, execute the
resizemethod of the Splitter as soon as it becomes visible.
javascript
$("#splitter").kendoSplitter({
});
3. Set the Orientation of the Splitter
Now, you can set the orientation of the Splitter.
javascript
$("#splitter").kendoSplitter({
orientation: "vertical"
});
4. Configure the Panes
In this step, you'll configure the panes of the Splitter.
javascript
$("#splitter").kendoSplitter({
panes: [ { size: "30%" }, { size: "40%", min: "50px" }, { size: "30%" } ],
orientation: "vertical"
});