rootPane.panes.dockable.innerDock Boolean
(default: true)
Specifies if the pane allows inner docks. Available only for panes of type content
.
Example
<div style="height:500px; width:1000px">
<div id="dockmanager"></div>
</div>
<script>
$("#dockmanager").kendoDockManager({
rootPane: {
type: "split",
id: "rootPaneId",
panes: [{
type: "content",
title: "Pane 1",
content: "Pane 1",
dockable: {
innerDock: false
}
},{
type: "content",
title: "Pane 2",
content: "Pane 2"
},{
type: "content",
title: "Pane 3",
content: "Pane 3",
}]
}
});
</script>