Steppers
Bootstrap Steps (stepper)
Note: This documentation is for an older version of Bootstrap (v.4). A
newer version is available for Bootstrap 5. We recommend migrating to the latest version of our product - Material Design for
Bootstrap 5.
Go to docs v.5
A Bootstrap stepper is a component that displays content as a process with defined by user milestones. Following steps are separated and connected by buttons.
This is a great solution for a variety of registration forms, where you don't want to scare the user with loads of fields and questions.
Stepper can be aligned vertically as well as horizontally.
Examples of Bootstrap steps use:
- Registration form
- Payment gateway
- Tutorial with steps
To start working with Dynamic Steppers see the "Getting Started" tab on this page.
All the steppers labeled as MDB Pro component require a simple, additional setup. Have a look at "Getting Started" tab on this page or follow our video tutorial .
How it works
When you are using our basic steppers you will need to copy and paste HTML code to your HTML file and you will have a static horizontal or vertical stepper.
If you want to use our PRO version of steppers you have to load JavaScript code and CSS styles. We have 2 types of files like minified and unminified.
The CSS code for steppers is located in css/addons-pro
. The JavaScript code of steppers is
located in js/addons-pro
.
Paths and initialization code are below:
Basic horizontal steppers
You can automatically initialize the stepper component using .stepper
and .stepper-horizontal
classes.
Basic vertical steppers
Add .stepper-vertical
class to use the vertical view.
Linear Stepper MDB Pro component
A Linear stepper is a component which is very commonly used.
When you are working with this stepper you have to put correct values to do more steps.
We are using Validate jQuery Plugin, so every step will be analysed to ensure compatibility with entered data.
Non-linear Stepper MDB Pro component
With a Non-linear stepper you can navigate freely between every step. That said, if you want check validation you have to use buttons to do that.
Parallel Stepper MDB Pro component
A Parallel stepper is a combination of linear and non-linear steppers. You can freely navigate between every step and also every step will be checked by custom validation and as well as regular validation entered data with a plugin.
Horizontal Stepper MDB Pro component
A Horizontal stepper is a stepper with a horizontal orientation. If you want use it you need to add
class horizontal
to your main ul
.
Horizontal steppers are fully
responsive.
When the size
of the resolution is smaller than 992px
, a horizontal stepper is changed to a vertical
stepper.
Feedback Step MDB Pro component
If you want, for example, to check if an e-mail exists in your DB, you can define a feedback function with a data-feedback attribute in your next button.
When the user tries to move forward, a loading screen will overlay the active step until you trigger
.nextStep
manually.
Also if you want to have validation you have to add data-feedback
code to your button; you can use either JS code to your
script
tag or a JS file:
Validation Step MDB Pro component
This function is mainly focused when using the Parallel Stepper. After checking the previous steps, you may add your own custom validation if jQuery validation is not enough.
After adding the HTML tag data-validator
, the given function will be executed and it is expected
to return a
logical value. If the value is not a boolean value, unexpected behavior will most likely occur.
Tip: If you plan to use both custom validation and feedback, use the custom validation feature to validate and the feedback function to trigger the next step's behavior.
Stepper with shadow MDB Pro component
Stepper can also be used with shadow to add depth to an element on a page.
Horizontal Stepper with a long content MDB Pro component
If you would like to have long content in your horizontal stepper you have to add the new class horizontal-fix
to your stepper.