items.separatorBoolean(default: false)

Defines a separator item. When set to true, the Drawer renders a separator instead of a clickable item.

Example - render a separator item

<div id="drawer">
    <div>Content area content.</div>
</div>
<script>
    $("#drawer").kendoDrawer({
        mode: "push",
        items: [
            { text: "Overview", icon: "home" },
            { separator: true },
            { text: "Administration", icon: "gear" }
        ]
    });
</script>
In this article
items.separator
Not finding the help you need?
Contact Support