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