items.textString
Defines the text of the item.
Example
<nav id="breadcrumb"></nav>
<script>
$("#breadcrumb").kendoBreadcrumb({
items: [
{ type: "rootitem", text: "Dashboard", showText: true },
{ type: "item", text: "User Management" },
{ type: "item", text: "Edit Profile" }
]
});
</script>
In this article