Class
TelerikWizard

The class for the wizard component.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public class TelerikWizard : BaseComponent, IComponent, IHandleEvent, IHandleAfterRender, IDisposable

Inheritance: objectComponentBaseBaseComponentTelerikWizard

Implements: IComponentIDisposableIHandleAfterRenderIHandleEvent

Inherited Members BaseComponent.ShouldRender()BaseComponent.OnInitializedAsync()BaseComponent.OnAfterRenderAsync(bool)BaseComponent.Dispose()BaseComponent.InitLocalizer()BaseComponent.ThrowIfParameterIsNull(object, string)BaseComponent.HaveOptionsChanged(IDictionary<string, object>, IDictionary<string, object>)BaseComponent.GetClassString(params string[])BaseComponent.InvokeAsync<T>(string, params object[])BaseComponent.InvokeAsync<T>(string, CancellationToken, params object[])BaseComponent.InvokeVoidAsync(string, params object[])BaseComponent.InvokeComponentMethodAsync<T>(string, params object[])BaseComponent.InvokeComponentMethodAsync<T>(string, CancellationToken, params object[])BaseComponent.InvokeVoidComponentMethodAsync(string, params object[])BaseComponent.InvokeComponentVoidMethodAsync(string, object)BaseComponent.InvokeDisposeAsync()BaseComponent.StateHasChanged()BaseComponent.RootComponentBaseComponent.ClassComponentBase.OnInitialized()ComponentBase.OnParametersSet()ComponentBase.OnAfterRender(bool)ComponentBase.InvokeAsync(Action)ComponentBase.InvokeAsync(Func<Task>)

Constructors

TelerikWizard()

Declaration

cs-api-definition
public TelerikWizard()

Properties

Height

Defines the height of the component as a CSS value.

Declaration

cs-api-definition
[Parameter]
public string Height { get; set; }

Property Value

string

OnFinish

Triggers when the done button is clicked.

Declaration

cs-api-definition
[Parameter]
public EventCallback OnFinish { get; set; }

Property Value

EventCallback

ShouldRenderContent

Declaration

cs-api-definition
public bool ShouldRenderContent { get; set; }

Property Value

bool

ShowPager

Specifies if the page label should be visible. Default value is true.

Declaration

cs-api-definition
[Parameter]
public bool ShowPager { get; set; }

Property Value

bool

StepperPosition

Specifies the stepper position in the wizard. Default value is Top.

Declaration

cs-api-definition
[Parameter]
public WizardStepperPosition StepperPosition { get; set; }

Property Value

WizardStepperPosition

Value

Sets the zero-based index of the current step.

Declaration

cs-api-definition
[Parameter]
public int Value { get; set; }

Property Value

int

ValueChanged

Triggers when the value has changed. The handler receives the new Wizard value (step index) as an event argument.

Declaration

cs-api-definition
[Parameter]
public EventCallback<int> ValueChanged { get; set; }

Property Value

EventCallback<int>

Width

Defines the width of the component as a CSS value.

Declaration

cs-api-definition
[Parameter]
public string Width { get; set; }

Property Value

string

WizardButtons

Defines the container tag for the Wizard buttons. This configuration overrides the whole rendering of the bottom-right section of the Wizard, including the built-in buttons and thus provides a full control over it. You can use the context to get the step number and adjust the buttons accordingly.

Declaration

cs-api-definition
[Parameter]
public RenderFragment<int> WizardButtons { get; set; }

Property Value

RenderFragment<int>

WizardSettings

Defines the container tag for additional Wizard settings. See WizardStepperSettings.

Declaration

cs-api-definition
[Parameter]
public RenderFragment WizardSettings { get; set; }

Property Value

RenderFragment

WizardSteps

Defines the container tag for the Wizard steps. See WizardStep.

Declaration

cs-api-definition
[Parameter]
public RenderFragment WizardSteps { get; set; }

Property Value

RenderFragment

Methods

BuildRenderTree(RenderTreeBuilder)

Declaration

cs-api-definition
protected override void BuildRenderTree(RenderTreeBuilder __builder)

Parameters

__builder

RenderTreeBuilder

Overrides ComponentBase.BuildRenderTree(RenderTreeBuilder)

OnParametersSetAsync()

Declaration

cs-api-definition
protected override Task OnParametersSetAsync()

Returns

Task

Overrides ComponentBase.OnParametersSetAsync()

SetParametersAsync(ParameterView)

Declaration

cs-api-definition
public override Task SetParametersAsync(ParameterView parameters)

Parameters

parameters

ParameterView

Returns

Task

Overrides ComponentBase.SetParametersAsync(ParameterView)