rootPane.panes.unpinnable.unpinnedSize String
The size of the pane when unpinned. If not specified the pinned size is used. 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",
header: "Pane 1",
content: "Pane content"
}, {
type: "content",
header: "Pane 2",
content: "Other content"
}, {
type: "content",
title: "Unpinned",
content: "Some unpinned content",
unpinnable: {
unpinned: true,
unpinnedSize: "500px"
}
}]
}
});
</script>