items.itemsArray
Specifies nested child items. The Drawer renders child items recursively by using the same item configuration surface.
Example - configure nested Drawer items
<div id="drawer">
<div>Content area content.</div>
</div>
<script>
$("#drawer").kendoDrawer({
expanded: true,
mode: "push",
items: [
{
text: "Management",
icon: "folder",
items: [
{ text: "Team", icon: "user" },
{ text: "Projects", icon: "home", selected: true }
]
},
{ text: "Help", icon: "question-circle" }
]
});
</script>