rootPane.panes.dockable Object|Boolean (default: true)

Specifies if the pane can be docked and allow inner docking of other panes. Accepts boolean or object. 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: false
                    },{
                        type: "content",
                        title: "Pane 2",
                        content: "Pane 2",
                    },{
                        type: "content",
                        title: "Pane 3",
                        content: "Pane 3",
                    }]
            }
        });
</script>
In this article