DEPRECATION WARNING

This documentation is not using the current rendering mechanism and is probably outdated. The extension maintainer should switch to the new system. Details on how to use the rendering mechanism can be found here.

showTabs

(mod.wizards.form.defaults.showTabs)

The configuration "showTabs" defines the outermost tabs on the left side of the form wizard.

The form wizard with the main tabs.
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 {
          ...
        }
      }
    }
  }
}