dataIconFieldString
Sets the field of the data item that provides the icon name of the menu items.
Example
<ul id="menu"></ul>
<script>
$("#menu").kendoMenu({
dataSource: {
data: [{
Name: "Item 1",
IconName: "gear",
IconClass: "custom-icon-class"
}]
},
dataTextField:"Name",
dataIconField:"IconName",
dataIconClassField:"IconClass"
});
</script>
In this article