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.

Elements reference

Overrule the default settings of the option tab for specific element types.

In the left "settings" part there is a tab called "Options". The contents of this tab will adapt itself to the selected element type in the form. If no elements configuration exists, the default settings will be used.

Overriding element settings

It is possible to override the default option tab settings for each element individually. This is done by using the same configuration as in mod.wizards.form.defaults.tabs.options, but using this configuration in mod.wizards.form.elements.[elementName].

The example below will hide all the accordions within the option tab for a text field (TEXTLINE element), except the filters:

mod.wizards.form.elements {
  textline {
    showAccordions = filters
  }
}

By using this setting you can show or hide accordions, attributes, validation rules or filters, for each and every individual element.