items.cssClassString
Defines the class names of the generated item element.
Example - add custom classes to an item
<div id="drawer">
<div>Content area content.</div>
</div>
<script>
$("#drawer").kendoDrawer({
mode: "push",
items: [
{ text: "Priority", icon: "star", cssClass: "priority-item" },
{ text: "Standard", icon: "home" }
]
});
</script>