The Breadcrumb control indicates the current page's location in a navigational hierarchy:
In this example, the DxTreeView component uses its SelectionChanged event handler to bind to the Bootstrap Breadcrumb component.
The TreeView's selected node changes when you select a Breadcrumb item:
<a @onclick="@(() => SelectNode(currentNodeInfo.Text))" href="#">
@currentNodeInfo.Text
</a>
@* ... *@
void SelectNode(string text) {
TreeView.SelectNode((n) => n.Text == text);
}
(you will be redirected to DevExpress.com to submit your response)