- Implementation
- Stepper Props
- Stepper.List Props
- Stepper.Panel Props
- Stepper.FinalPanel Props
Common Examples
Adding stepper content
Content can be added to theStepper by using Stepper.Panel. The id on a Stepper.Panel must match with the controls on its associated Stepper.Step to ensure proper functionality and display of the content.Content can be added to the end of the Stepper by using Stepper.FinalPanel.Preventing step on stepper next button
In some cases, validation or other asynchronous functionality needs to occur before the user progresses to the next step.To prevent theStepper.NextButton from going to the next step on click, return either false or a Promise that resolves false to the onClick prop.