New to Telerik UI for Blazor? Start a free 30-day trial
Breadcrumb Events
Updated on Aug 31, 2026
This article explains the events available in the Telerik Breadcrumb for Blazor:
OnItemClick
The OnItemClick event fires when the user clicks or taps on a Breadcrumb item and before any navigation occurs. It receives object of type BreadcrumbItemClickEventArgs which exposes the following fields:
Item- an object you can cast to your model class to obtain the clicked data item.IsCancelled- specifies whether the event is canceled and the built-in action is prevented.
The event will not fire for the last item and for disabled items.
You can use the OnItemClick event to react to user choices in a Breadcrumb, and load new content without using navigation.
Handle OnItemClick event of the Breadcrumb
Loading ...