items.typeString
Defines the type of the item "rootitem" or "item".
Example
<nav id="breadcrumb"></nav>
<script>
$("#breadcrumb").kendoBreadcrumb({
items: [
{ type: "rootitem", text: "Home", showText: true },
{ type: "item", text: "Products" },
{ type: "item", text: "Laptops" }
]
});
</script>