New to Telerik UI for ASP.NET Core? Download free 30-day trial

Navigation

The Navigationalconfiguration 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:

    @(Html.Kendo().Breadcrumb()
        .Name("breadcrumb")
        .BindToLocation(true)
        .Navigational(true)
    )
    <kendo-breadcrumb name="breadcrumb"
                        bindToLocation="true"
                        navigational="true">    
    </kendo-breadcrumb>

The BindToLocation configuration sets the value ot the widget 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.

See Also

In this article