Name |
Type |
Default value |
Description |
---|
ClassField |
string |
Class |
Class HTML attribute for BreadList item. |
ClassFieldSelector |
Expression<Func<TItem, object>>? |
null |
Class HTML attribute for BreadList item. |
ChildContent |
RenderFragment? |
null |
The content of the BitBreadcrumb, that are BitBreadOption components. |
DividerIconName |
string |
ChevronRight |
The divider icon name. |
HrefField |
string |
Href |
URL to navigate to when this BreadList item is clicked. If provided, the BreadList will be rendered as a link. |
HrefFieldSelector |
Expression<Func<TItem, object>>? |
null |
URL to navigate to when this BreadList item is clicked. If provided, the BreadList will be rendered as a link. |
Items |
IList<TItem> |
new List<TItem>() |
Collection of breadcrumbs to render |
IsSelectedField |
string |
IsSelected |
Display the item as a Selected item. |
IsSelectedFieldSelector |
Expression<Func<TItem, bool>>? |
null |
Display the item as a Selected item. |
IsEnabledField |
string |
IsEnabled |
Whether an item is enabled or not. |
IsEnabledFieldSelector |
Expression<Func<TItem, bool>>? |
null |
Whether an item is enabled or not. |
MaxDisplayedItems |
uint |
0 |
The maximum number of breadcrumbs to display before coalescing. If not specified, all breadcrumbs will be rendered. |
OverflowAriaLabel |
string? |
null |
Aria label for the overflow button. |
OverflowIndex |
uint |
0 |
Optional index where overflow items will be collapsed. |
OverflowIconName |
string |
More |
The overflow icon name. |
OnItemClick |
EventCallback<TItem> |
|
Callback for when the breadcrumb item clicked. |
SelectedItemClass |
string? |
null |
The CSS class attribute for the selected item. |
SelectedItemStyle |
string? |
null |
The style attribute for selected item. |
StyleField |
string |
Style |
Style HTML attribute for BreadList item. |
StyleFieldSelector |
Expression<Func<TItem, object>>? |
null |
Style HTML attribute for BreadList item. |
TextField |
string |
Text |
Text to display in the BreadList item. |
TextFieldSelector |
Expression<Func<TItem, object>>? |
null |
Text to display in the BreadList item. |
Name |
Type |
Default value |
Description |
---|
AriaLabel |
string? |
null |
The aria-label of the control for the benefit of screen readers. |
Class |
string? |
null |
Custom CSS class for the root element of the component. |
HtmlAttributes |
Dictionary<string, object> |
new Dictionary<string, object>() |
Capture and render additional attributes in addition to the component's parameters. |
Id |
string? |
null |
Custom id attribute for the root element. if null the UniqueId will be used instead. |
IsEnabled |
bool |
true |
Whether or not the component is enabled. |
Style |
string? |
null |
Custom CSS style for the root element of the component. |
Visibility |
BitVisibility |
BitVisibility.Visible |
Whether the component is visible, hidden or collapsed. |