Blazorise Step API

Explore the Blazorise Step API reference for parameters, events, methods, and related types.

For examples and usage guidance, see the Step documentation.

API

Parameters

Steps

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

Step

Parameter Description TypeDefault
Caption

Custom render template for the text part of the step item.

RenderFragmentnull
ChildContent

Specifies the content to be rendered inside this Step.

RenderFragmentnull
Color

Overrides the step color.

ColorColor.Default
Completed

Marks the step as completed.

boolfalse
Index

Overrides the index of the step item.

int?null
Intent

Overrides the step intent.

Intentnull
Marker

Custom render template for the marker(circle) part of the step item.

RenderFragmentnull
Name

Specifies the step name.

string

StepsContent

Parameter Description TypeDefault
ChildContent

Specifies the content to be rendered inside this StepsContent.

RenderFragmentnull
SelectedPanel

Specifies the currently selected panel name.

string

StepPanel

Parameter Description TypeDefault
ChildContent

Specifies the content to be rendered inside this StepPanel.

RenderFragmentnull
Name

Specifies the panel name. Must match the corresponding step name.

string

Events

Steps

Event Description Type
NavigationAllowed

Disables navigation by clicking on step.

Func<StepNavigationContext, Task<bool>>
SelectedStepChanged

Occurs after the selected step has changed.

EventCallback<string>

Step

Event Description Type
Clicked

Notifies when the item is clicked.

EventCallback<MouseEventArgs>

StepsContent

Event Description Type
SelectedPanelChanged

Occurs after the selected panel has changed.

EventCallback<string>

Methods

Steps

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

StepsContent

Method DescriptionReturnParameters
SelectPanel Select the panel by name. Taskstring name
On this page