ClassStepperStep
The class for the stepper step component.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
public class StepperStep : ComponentBase, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Inheritance: objectComponentBaseStepperStep
Implements:
Inherited Members
Constructors
StepperStep()
Declaration
public StepperStep()
Properties
AriaControls
Specifies the aria-controls attribute of the step.
Declaration
[Parameter]
public string AriaControls { get; set; }
Property Value
Class
Defines the CSS class of the step.
Disabled
Specifies if the step is disabled. If a step is disabled, users cannot select it.
Icon
Specifies the icon rendered in the step. You can use either a predefined Telerik Icon or a custom one. Refer to Icons - Documentation for more information on how icons work.
Label
Defines the label of the step.
OnChange
Triggers before the step change.
Declaration
[Parameter]
public EventCallback<StepperStepChangeEventArgs> OnChange { get; set; }
Property Value
Optional
Specifies if the step is optional. If "true", the step will show the label "(Optional)" to indicate that the step is not mandatory.
Template
Defines the template of the step. See https://docs.telerik.com/blazor-ui/components/stepper/step-template.
Declaration
[Parameter]
public RenderFragment Template { get; set; }
Property Value
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
__builder
Overrides
Dispose()
Declaration
public void Dispose()
Implements
OnInitialized()
Declaration
protected override void OnInitialized()
Overrides