Module MaterialFX

Class MFXStepper

All Implemented Interfaces:
Styleable, EventTarget, Skinnable

public class MFXStepper extends Control
This is the implementation of a stepper/wizard following material design guidelines in JavaFX.

Steppers display progress through a sequence of logical and numbered steps. They may also be used for navigation.

Every stepper has a number of MFXStepperToggles that should be added to the list after instantiating the stepper. If the list is changed after the stepper has already been laid out then a reset() attempt is made.

The stepper has two properties to represent the current step index and the progress. The progress is computed as the number of COMPLETED toggles divided by the number of toggles. The progress is updated automatically, can be also forced by calling updateProgress().

NOTE: the stepper allows you to change the toggles even after it is already shown, it has been tested and it seems to work well. However, the stepper is intended to be a "static" control, that means you should plan ahead of time what toggles to place and their content.
See Also: