Specifies the orientation of the
Splitter.
- "horizontal"
- Define horizontal orientation of the splitter.
- "vertical"
- Define vertical orientation of the splitter.
An array of pane definitions.
Example
$("#splitter").kendoSplitter({
panes: [
{ size: "200px", min: "100px", max: "300px" },
{ size: "20%", resizable: false },
{ collapsed: true, collapsible: true }
]
});
Specifies whether a pane is initially collapsed (true) or expanded (true).
Specifies whether a pane is collapsible (true) or not collapsible (false).
Specifies the URL from which to load the content of a pane.
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.
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.
Specifies whether a pane is resizable (true) or not resizable (false).
Specifies whether a pane is scrollable (true) or not scrollable (false).
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.