rootIcon String (default: "home")

Defines a name of an existing icon in the Kendo UI Web Font Icons. The icon will be applied as the first item(root) of Breadcrumb path.

The root icon is clickable and resets the value of the component.

Example

Open In Dojo
<nav id="breadcrumb"></nav>

<script>
    $("#breadcrumb").kendoBreadcrumb({
        rootIcon: "cloud",
        value: 'Telerik UI/Navigation/Breadcrumb'
    });
</script>
In this article