rootPane.panes.unpinnableObject|Boolean(default: true)
Specifies if the pane can be pinned/unpinnned. 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",
panes: [{
type: "content",
title: "Unpinnable Pane",
content: "This pane can be unpinned",
unpinnable: true
}, {
type: "content",
title: "Non-Unpinnable Pane",
content: "This pane cannot be unpinned",
unpinnable: false
}]
}
});
</script>
In this article