orientation: String(default: horizontal)
Specifies the orientation of the Splitter.
"horizontal"
Define horizontal orientation of the splitter.
"vertical"
Define vertical orientation of the splitter.
panes: Array
An array of pane definitions.

Example

$("#splitter").kendoSplitter({
    panes: [
        { size: "200px", min: "100px", max: "300px" },
        { size: "20%", resizable: false },
        { collapsed: true, collapsible: true }
    ]
});
collapsed: Boolean(default: false)
Specifies whether a pane is initially collapsed (true) or expanded (true).
collapsible: Boolean(default: false)
Specifies whether a pane is collapsible (true) or not collapsible (false).
contentUrl: Boolean(default: true)
Specifies the URL from which to load the content of a pane.
max: String
Specifies the maximum size of a pane defined as pixels (i.e. "200px") or as a percentage (i.e. "50%"). The size of a resized pane cannot exceed the defined maximum size.
min: String
Specifies the minimum size of a pane defined as pixels (i.e. "200px") or as a percentage (i.e. "50%"). The size of a resized pane cannot be less than the defined minimum size.
resizable: Boolean(default: true)
Specifies whether a pane is resizable (true) or not resizable (false).
scrollable: Boolean(default: true)
Specifies whether a pane is scrollable (true) or not scrollable (false).
size: String
Specifies the size of a pane defined as pixels (i.e. "200px") or as a percentage (i.e. "50%"). Note: This value must not exceed panes.max or be less then panes.min.