rootPane.type String
(default: "split")
Defines the id of the root pane. Available options are tab
or split
.
Example
<div style="height:500px; width:1000px">
<div id="dockmanager"></div>
</div>
<script>
$("#dockmanager").kendoDockManager({
rootPane: {
type: "tab",
panes: [{
type: "content",
header: "Pane 1",
content: "Pane content"
}, {
type: "content",
header: "Pane 2",
content: "Secpnd Pane content"
}, {
type: "content",
title: "Pane 3",
content: "Third Pane content"
}]
}
});
</script>