minHeight Number

Specifies the minimum height for the drawer in push mode. The overlay mode takes 100% of the page height.

Example

<div id="drawer">
    <div>Content area content.</div>
</div>
<script>
    $(document).ready(function() {
        var drawerInstance = $("#drawer").kendoDrawer({
            mode: "push",
            template: `<ul><li data-role='drawer-item'><span class='k-icon k-i-star-outline'></span><span class='item-text'>item 1</span></li></ul>`,
            position: 'left',
            minHeight: 200
        }).data("kendoDrawer");

        drawerInstance.show();
    });
</script>
In this article