Blazorise Steps component

Steps is a navigation bar that guides users through the steps of a task.

API

Parameters

Parameter Description TypeDefault
ChildContent

Specifies the content to be rendered inside this Steps.

RenderFragmentnull
Content

Template for placing the StepPanel items.

RenderFragmentnull
Items

Template for placing the Step items.

RenderFragmentnull
RenderMode

Specifies how the steps content will be rendered.

Possible values:Default, LazyLoad, LazyReload

StepsRenderModeStepsRenderMode.Default
SelectedStep

Specifies the currently selected step name.

string

Events

Event Description Type
NavigationAllowed

Disables navigation by clicking on step.

Func<StepNavigationContext, Task<bool>>
SelectedStepChanged

Occurs after the selected step has changed.

EventCallback<string>

Methods

Method DescriptionReturnParameters
NextStep Goes to the next step. Task<bool>
PreviousStep Goes to the previous step. Task<bool>
SelectStep Sets the active step by the name. Task<bool>string stepName
On this page