New to Telerik UI for BlazorStart a free 30-day trial

Defines a single step in a TelerikWizard. Configure content via Content and stepper visuals with StepTemplate, Text, Label, and Icon; control behavior using Optional, Disabled, and validation indicator Valid. Intercept navigation with OnChange.

Definition

Constructors

C#
public WizardStep()

Methods

C#
public void Dispose()

Implements: IDisposable.Dispose()

C#
protected override void OnInitialized()

Overrides: ComponentBase.OnInitialized()

C#
protected override Task OnParametersSetAsync()
Returns:

Task

Overrides: ComponentBase.OnParametersSetAsync()

C#
public override Task SetParametersAsync(ParameterView parameters)
Parameters:parametersParameterViewReturns:

Task

Overrides: ComponentBase.SetParametersAsync(ParameterView)

Properties

Defines the content of the step.

C#
[Parameter]
public RenderFragment Content { get; set; }

Specifies if the step is disabled. If a step is disabled, users cannot click and select it.

C#
[Parameter]
public bool Disabled { get; set; }

Specifies an 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.

C#
[Parameter]
public object Icon { get; set; }

Defines the label of the step.

C#
[Parameter]
public string Label { get; set; }

Triggers before the step change. The handler receives an object of type WizardStepChangeEventArgs.

C#
[Parameter]
public EventCallback<WizardStepChangeEventArgs> OnChange { get; set; }

Specifies if the step is optional. If "true", the step will show a label "(Optional)" to visually indicate that it is not mandatory.

C#
[Parameter]
public bool Optional { get; set; }

Use the StepTemplate to control the rendering of the Stepper Step.

C#
[Parameter]
public RenderFragment StepTemplate { get; set; }

Defines the step indicator text.

C#
[Parameter]
public string Text { get; set; }

Specifies if the step is valid. Step validation serves as a visual indication whether a step is valid or not. It does not prevent the users from navigating between steps. Default value is "null".

C#
[Parameter]
public bool? Valid { get; set; }

Specifies if the step is visible. Hidden steps are excluded from the Wizard stepper and navigation. Default value is true.

C#
[Parameter]
public bool Visible { get; set; }