Class TelerikWizard
The class for the wizard component.
Inherited Members
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class TelerikWizard : BaseComponent, IDisposable, IWizardStepContainer, IWizardStepperSettingsContainer
Constructors
TelerikWizard()
Declaration
public TelerikWizard()
Properties
Height
Defines the height of the component as a CSS value.
Declaration
public string Height { get; set; }
Property Value
System.String
|
OnFinish
Triggers when the done button is clicked.
Declaration
public EventCallback OnFinish { get; set; }
Property Value
Microsoft.AspNetCore.Components.EventCallback
|
ShouldRenderContent
Declaration
public bool ShouldRenderContent { get; set; }
Property Value
System.Boolean
|
ShowPager
Specifies if the page label should be visible. Default value is true.
Declaration
public bool ShowPager { get; set; }
Property Value
System.Boolean
|
StepperPosition
Specifies the stepper position in the wizard. Default value is Top.
Declaration
public WizardStepperPosition StepperPosition { get; set; }
Property Value
WizardStepperPosition
|
Value
Sets the zero-based index of the current step.
Declaration
public int Value { get; set; }
Property Value
System.Int32
|
ValueChanged
Triggers when the value has changed. The handler receives the new Wizard value (step index) as an event argument.
Declaration
public EventCallback<int> ValueChanged { get; set; }
Property Value
Microsoft.AspNetCore.Components.EventCallback<System.Int32>
|
Width
Defines the width of the component as a CSS value.
Declaration
public string Width { get; set; }
Property Value
System.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
public RenderFragment<int> WizardButtons { get; set; }
Property Value
Microsoft.AspNetCore.Components.RenderFragment<System.Int32>
|
WizardSettings
Defines the container tag for additional Wizard settings. See WizardStepperSettings.
Declaration
public RenderFragment WizardSettings { get; set; }
Property Value
Microsoft.AspNetCore.Components.RenderFragment
|
WizardSteps
Defines the container tag for the Wizard steps. See WizardStep.
Declaration
public RenderFragment WizardSteps { get; set; }
Property Value
Microsoft.AspNetCore.Components.RenderFragment
|
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder
__builder
|
OnParametersSetAsync()
Declaration
protected override Task OnParametersSetAsync()
Returns
System.Threading.Tasks.Task
|
SetParametersAsync(ParameterView)
Declaration
public override Task SetParametersAsync(ParameterView parameters)
Parameters
Microsoft.AspNetCore.Components.ParameterView
parameters
|
Returns
System.Threading.Tasks.Task
|