Navigation
The navigational
configuration determines whether automatic navigation will be enabled. The default value is false. When set to true, the url will be added to the href
attribute of the Breadcrumb items.
The below example demonstrates the automatic navigation:
<nav id="breadcrumb" style="width:300px"></nav>
<script>
$("#breadcrumb").kendoBreadcrumb({
navigational: true,
bindToLocation: true
});
</script>
The bindToLocation
configuration sets the value ot the component to the current URL (the location object). In addition, that URL will be added to the href
attribute of the Breadcrumb items through the navigational
configuration.
When the configuration is disabled, you need to implement the navigation programmatically.