ClassTelerikBreadcrumb<TItem>
The class for the Telerik Breadcrumb Component.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Type Parameters:
TItem
Syntax:
public class TelerikBreadcrumb<TItem> : BindingComponentBase, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Inheritance: objectComponentBaseBaseComponentBindingComponentBaseTelerikBreadcrumb<TItem>
Implements:
Inherited Members
Constructors
TelerikBreadcrumb()
Declaration
public TelerikBreadcrumb()
Properties
ClassField
Defines the Class DataField of the DataSource.
Declaration
[Parameter]
public string ClassField { get; set; }
Property Value
CollapseMode
Defines the collapse mode of the Breadcrumb. Default value is Auto.
Declaration
[Parameter]
public BreadcrumbCollapseMode CollapseMode { get; set; }
Property Value
Data
Defines the data items of the Breadcrumb.
Declaration
[Parameter]
public IEnumerable<TItem> Data { get; set; }
Property Value
IEnumerable<TItem>
DisabledField
Defines the Disabled DataField of the DataSource.
Declaration
[Parameter]
public string DisabledField { get; set; }
Property Value
Height
Defines the height of the Breadcrumb.
ItemTemplate
Defines the template for each breadcrumb item.
Declaration
[Parameter]
public RenderFragment<TItem> ItemTemplate { get; set; }
Property Value
RenderFragment<TItem>
OnItemClick
Defines the OnItemClick Event which is fired when clicking on an item.
Declaration
[Parameter]
public EventCallback<BreadcrumbItemClickEventArgs> OnItemClick { get; set; }
Property Value
SeparatorIcon
Defines the icon used as a separator between individual items. If no value is provided, a or icon will be used based on the direction.
Declaration
[Parameter]
public object SeparatorIcon { get; set; }
Property Value
SeparatorTemplate
Defines the template for the separator used between individual items.
Declaration
[Parameter]
public RenderFragment<TItem> SeparatorTemplate { get; set; }
Property Value
RenderFragment<TItem>
TitleField
Defines the Title DataField of the DataSource.
Declaration
[Parameter]
public string TitleField { get; set; }
Property Value
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
__builder
Overrides
Dispose()
Declaration
public override void Dispose()
Overrides
SetParametersAsync(ParameterView)
Declaration
public override Task SetParametersAsync(ParameterView parameters)
Parameters
parameters
Returns
Overrides