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.

Tab "Form"

The form tab shows the configuration of the outer form, like the attributes of the form or the prefix as well as the post-processor configuration.

The form wizard with the tab "Form".

showAccordions

(mod.wizards.form.defaults.tabs.form.showAccordions)

Property:
showAccordions
Data type:
string
Description:

Comma-separated list of the accordions that are allowed to be shown in the wizard. This does not mean they are all shown by default, but depends on the chosen element type.

Some accordions have further properties, which are described below.

Default:

The following accordions are available in the form tab:

Attributes accordion

showProperties

Attention

The configuration of the attributes accordion is not working as expected and has to be fixed in a coming version of TYPO3. There is a workaround which is shown below.

(mod.wizards.form.defaults.tabs.form.accordions.attributes.showProperties)

Property:
showProperties
Data type:
string
Description:
Comma-separated list of the form attributes that are allowed to be shown in the accordion.
Default:
accept, action, dir, enctype, lang, method, novalidate, class, id, style, title

Since the above shown configuration is not working, the following workaround can be applied. To configure the attribute accordion of the form element, address the object directly via mod.wizards.form.elements.form.accordions.attributes.showProperties.

Post-processors accordion

showPostProcessors

(mod.wizards.form.defaults.tabs.form.accordions.postProcessor.showPostProcessors)

Property:
showPostProcessors
Data type:
string
Description:

Comma-separated list of the post-processors that are allowed to be shown in the wizard.

For each post-processors a list of properties to be shown can be defined.

Default:
mail, redirect

postProcessors.[post-processor].showProperties

(mod.wizards.form.defaults.tabs.form.accordions.postProcessor.postProcessors.[post-processor].showProperties)

Property:
postProcessors.[post-processor].showProperties
Data type:
string
Description:

Configuration for the post-processors individually.

The syntax is postProcessors.[name of the post-processor].showProperties.

Default:

The following element properties are available:

Element: Properties:
mail recipientEmail, senderEmail, subject
redirect destination

Default configuration

The default configuration of the form tab looks as follows:

mod.wizards {
  form {
    defaults {
      tabs {
        form {
          showAccordions = behaviour, prefix, attributes, postProcessor
          accordions {
            postProcessor {
              showPostProcessors = mail, redirect
              postProcessors {
                mail {
                  showProperties = recipientEmail, senderEmail, subject
                }
                redirect {
                  showProperties = destination
                }
              }
            }
          }
        }
      }
    }
  }
}