items.textString
Defines the text of the item. If not set, the generated item renders no text.
Example - set item text
<div id="drawer">
<div>Content area content.</div>
</div>
<script>
$("#drawer").kendoDrawer({
mode: "push",
items: [
{ text: "Inbox", icon: "inbox" },
{ text: "Archive", icon: "folder" }
]
});
</script>