items.showIconBoolean
Defines whether to show the icon. Default value is true for rootItem and false for item.
Example
<nav id="breadcrumb"></nav>
<script>
$("#breadcrumb").kendoBreadcrumb({
items: [
{ type: "rootitem", icon: "home", showIcon: true, showText: false },
{ type: "item", icon: "folder", text: "Documents", showIcon: false },
{ type: "item", icon: "file", text: "readme.txt", showIcon: true }
]
});
</script>
In this article