rootPane.panes.content String|Function

The content of the pane. 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: "Split Pane 1",
                    },{
                        type: "content",
                        title: "Pane 2",
                        content: ({ username }) => `User name: ${username}`,
                    }]
            }
        });
</script>
In this article