items Array
Array of items to be rendered in Breadcrumb.
Example
<nav id="breadcrumb"></nav>
<script>
$("#breadcrumb").kendoBreadcrumb({
items: [
{ type:"rootitem", href: "mysite.com", text: "Home", showIcon: false, showText: true },
{ type:"item", href: "/cloud", text: "Cloud", icon: "cloud", showText: false, showIcon: true }
]
});
</script>