ModalWizard
This component is used to show a modal dialog that takes the user through as sequence of steps. You define how each step should render.
Installation
Examples
Properties
show
boolean
Set this to true to show the dialog. False to hide it
onClose
()=>void
Call this to close the dialog
title
string
The title to show on the top
icon
string
An optional icon to show
onRenderHeader
(currentStep:IModalWizardStepProps)=> JSX.Element
A method to render a subheader just below the title area.
steps
IModalWizardStep[]
The list of steps that this wizard consists of.
onComplete
()=>Promise
This action executes after they hit 'next' on the final page.
completionText
string
Text to show on the 'next' button in the final stage.
className
string
show
Set this to true to show the dialog. False to hide it
boolean
onClose
Call this to close the dialog
()=>void
title
The title to show on the top
string
icon
An optional icon to show
string
onRenderHeader
A method to render a subheader just below the title area.
(currentStep:IModalWizardStepProps)=> JSX.Element
steps
The list of steps that this wizard consists of.
IModalWizardStep[]
onComplete
This action executes after they hit 'next' on the final page.
()=>Promise
completionText
Text to show on the 'next' button in the final stage.
string
className
string
Last updated