showTabs¶
(mod.wizards.form.defaults.showTabs
)
The configuration “showTabs” defines the outermost tabs on the left side of the form wizard.

- Property:
- showTabs
- Data type:
- string
- Description:
- Comma-separated list of the tabs that will be shown in the wizard.
- Default:
- elements, options, form
tabs¶
(mod.wizards.form.defaults.tabs
)
Each of the 3 tabs can be further customized.
- Property:
- tabs
- Data type:
[array of objects]
->tabs.[tabName]
- Description:
- Configuration for each tab.
Example¶
mod.wizards {
form {
defaults {
showTabs = elements, options, form
tabs {
elements {
...
}
options {
...
}
form {
...
}
}
}
}
}