[formElementsDefinition]¶
Properties¶
[formElementsDefinition]¶
- Option path
- TYPO3.CMS.Form.prototypes.<prototypeIdentifier>.formElementsDefinition
- Data type
- array
- Needed by
- Frontend/ Backend (form editor)
- Mandatory
- Yes
- Default value
1 2 3 4
prototypes: <prototypeIdentifier>: formElementsDefinition: [...]
- Good to know
- Description
- Array which defines the available form elements. Every key within this array is called the
<formElementTypeIdentifier>
.
<formElementTypeIdentifier>¶
- Option path
- TYPO3.CMS.Form.prototypes.<prototypeIdentifier>.formElementsDefinition.<formElementTypeIdentifier>
- Data type
- string
- Needed by
- Frontend/ Backend (form editor)
- Mandatory
- Yes
- Default value (for prototype ‘standard’)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
prototypes: standard: Form: [...] Page: [...] SummaryPage: [...] Fieldset: [...] GridContainer: [...] GridRow: [...] Text: [...] Password: [...] AdvancedPassword: [...] Textarea: [...] Honeypot: [...] Hidden: [...] Email: [...] Telephone: [...] Url: [...] Number: [...] Date: [...] Checkbox: [...] MultiCheckbox: [...] MultiSelect: [...] RadioButton: [...] SingleSelect: [...] DatePicker: [...] StaticText: [...] ContentElement: [...] FileUpload: [...] ImageUpload: [...]
- Good to know
- Description
- This array key identifies a form element. This identifier could be used to attach a form element to a form.
Common <formElementTypeIdentifier> properties¶
defaultValue¶
- Option path
- TYPO3.CMS.Form.prototypes.<prototypeIdentifier>.formElementsDefinition.<formElementTypeIdentifier>.defaultValue
- Data type
- string/ array
- Needed by
- Frontend/ Backend (form editor)
- Mandatory
- No
- Default value
- undefined
- Description
- If set this string/ array will be used as default value of the form
element. Array is in place for multi value elements (e.g. the
MultiSelect
form element).
implementationClassName¶
- Option path
- TYPO3.CMS.Form.prototypes.<prototypeIdentifier>.formElementsDefinition.<formElementTypeIdentifier>.implementationClassName
- Data type
- string
- Needed by
- Frontend/ Backend (form editor)
- Mandatory
- Yes
- Default value
- Depends (see concrete element configuration)
- Good to know
- Description
- Classname which implements the form element.
renderingOptions.translation.translationFile¶
- Option path
- TYPO3.CMS.Form.prototypes.<prototypeIdentifier>.formElementsDefinition.<formElementTypeIdentifier>.renderingOptions.translation.translationFile
- Data type
- string/ array
- Needed by
- Frontend/ Backend (form editor)
- Mandatory
- No
- Default value
- Depends (see concrete element configuration)
- Good to know
- Description
- Filesystem path(s) to translation files which should be searched for form element property translations.
If
translationFile
is undefined, - “TYPO3.CMS.Form.prototypes.<prototypeIdentifier>.formElementsDefinition.Form.renderingOptions.translation.translationFile” will be used.
renderingOptions.translation.translatePropertyValueIfEmpty¶
- Option path
- TYPO3.CMS.Form.prototypes.<prototypeIdentifier>.formElementsDefinition.<formElementTypeIdentifier>.renderingoptions.translation.translatepropertyvalueifempty
- Data type
- bool
- Needed by
- Frontend/ Backend (form editor)
- Mandatory
- No
- Default value
- true
- Good to know
- Description
- If set to
false
, the form element property translation will be skipped if the form element property value is empty.
renderingOptions.templateName¶
- Option path
- TYPO3.CMS.Form.prototypes.<prototypeIdentifier>.formElementsDefinition.<formElementTypeIdentifier>.renderingOptions.templateName
- Data type
- string
- Needed by
- Frontend/ Backend (form editor)
- Mandatory
- (see concrete element configuration)
- Default value
- undefined
- Good to know
- Description
- Set
templateName
to define a custom template name which should be used instead of the<formElementTypeIdentifier>
.
properties¶
- Option path
- TYPO3.CMS.Form.prototypes.<prototypeIdentifier>.formElementsDefinition.<formElementTypeIdentifier>.properties
- Data type
- array
- Needed by
- Frontend/ Backend (form editor)
- Mandatory
- No
- Default value
- Depends (see concrete element configuration)
- Good to know
- Description
- Array with form element specific properties.
properties.elementDescription¶
- Option path
- TYPO3.CMS.Form.prototypes.<prototypeIdentifier>.formElementsDefinition.<formElementTypeIdentifier>.properties.elementDescription
- Data type
- string
- Needed by
- Frontend/ Backend (form editor)
- Mandatory
- No
- Default value
- Undefined
- Good to know
- Description
- Set a description of the form element. By default, it is displayed below the form element.
properties.fluidAdditionalAttributes¶
- Option path
- TYPO3.CMS.Form.prototypes.<prototypeIdentifier>.formElementsDefinition.<formElementTypeIdentifier>.properties.fluidAdditionalAttributes
- Data type
- array
- Needed by
- Frontend/ Backend (form editor)
- Mandatory
- No
- Default value
- Depends (see concrete element configuration)
- Good to know
- Description
- The values within this array goes directely into the fluid form element viewhelpers property
additionalAttributes
.
properties.gridColumnClassAutoConfiguration¶
- Option path
- TYPO3.CMS.Form.prototypes.<prototypeIdentifier>.formElementsDefinition.<formElementTypeIdentifier>.properties.gridColumnClassAutoConfiguration
- Data type
- array
- Needed by
- Frontend/ Backend (form editor)
- Mandatory
- No
- Default value
- Undefined
- Related options
- Description
If the form element lies within a GridRow you can define the number of columns which the form element should occupy. Each
viewPorts
configuration key has to match with on ofe the defined viewports withinTYPO3.CMS.Form.prototypes.<prototypeIdentifier>.formElementsDefinition.GridRow.properties.gridColumnClassAutoConfiguration.viewPorts
1 2 3 4 5 6 7 8 9 10
gridColumnClassAutoConfiguration: viewPorts: lg: numbersOfColumnsToUse: '2' md: numbersOfColumnsToUse: '3' sm: numbersOfColumnsToUse: '4' xs: numbersOfColumnsToUse: '5'
label¶
- Option path
- TYPO3.CMS.Form.prototypes.<prototypeIdentifier>.formElementsDefinition.<formElementTypeIdentifier>.label
- Data type
- string
- Needed by
- Frontend/ Backend (form editor)
- Mandatory
- No
- Default value
- Depends (see concrete element configuration)
- Good to know
- Description
- The label of the form element.
formEditor¶
- Option path
- TYPO3.CMS.Form.prototypes.<prototypeIdentifier>.formElementsDefinition.<formElementTypeIdentifier>.formEditor
- Data type
- array
- Needed by
- Backend (form editor)
- Mandatory
- No (but recommended)
- Default value
- Depends (see concrete element configuration)
- Description
- Array with configurations for the
form editor
formEditor.predefinedDefaults¶
- Option path
- TYPO3.CMS.Form.prototypes.<prototypeIdentifier>.formElementsDefinition.<formElementTypeIdentifier>.formEditor.predefinedDefaults
- Data type
- array
- Needed by
- Backend (form editor)
- Mandatory
- Yes
- Default value
- Depends (see concrete element configuration)
- Good to know
- Description
- Defines predefined defaults for form element properties which are prefilled, if the form element is added to a form.
formEditor.propertyCollections¶
- Option path
- TYPO3.CMS.Form.prototypes.<prototypeIdentifier>.formElementsDefinition.<formElementTypeIdentifier>.formEditor.propertyCollections
- Data type
- array
- Needed by
- Backend (form editor)
- Mandatory
- No
- Default value
- Depends (see concrete element configuration)
- Good to know
- Description
- Array with configurations for
property collections
for the form element.
formEditor.propertyCollections.validators¶
- Option path
- TYPO3.CMS.Form.prototypes.<prototypeIdentifier>.formElementsDefinition.<formElementTypeIdentifier>.formEditor.propertyCollections.validators
- Data type
- array
- Needed by
- Backend (form editor)
- Mandatory
- No
- Default value
- Depends (see concrete element configuration)
- Good to know
- Description
- Array with configurations for available validators for a form element.
formEditor.propertyCollections.validators.[*].identifier¶
- Option path
- TYPO3.CMS.Form.prototypes.<prototypeIdentifier>.formElementsDefinition.<formElementTypeIdentifier>.formEditor.propertyCollections.validators.[*].identifier
- Data type
- string
- Needed by
- Backend (form editor)
- Mandatory
- Yes
- Default value
- Depends (see concrete element configuration)
- Good to know
- Description
- Identifies the validator which should be attached to the form element. Must be equal to a existing
<validatorIdentifier>
.
formEditor.propertyCollections.validators.[*].editors¶
- Option path
- TYPO3.CMS.Form.prototypes.<prototypeIdentifier>.formElementsDefinition.<formElementTypeIdentifier>.formEditor.propertyCollections.validators.[*].editors
- Data type
- string
- Needed by
- Backend (form editor)
- Mandatory
- Yes
- Default value
- Depends (see concrete element configuration)
- Good to know
- Description
- Array with available
inspector editors
for this validator.
formEditor.propertyCollections.finishers¶
- Option path
- TYPO3.CMS.Form.prototypes.<prototypeIdentifier>.formElementsDefinition.<formElementTypeIdentifier>.formEditor.propertyCollections.finishers
- Data type
- array
- Needed by
- Backend (form editor)
- Mandatory
- No
- Default value
- Depends (see concrete element configuration)
- Good to know
- Description
- Array with configurations for available finisher for a form definition.
formEditor.propertyCollections.finishers.[*].identifier¶
- Option path
- TYPO3.CMS.Form.prototypes.<prototypeIdentifier>.formElementsDefinition.<formElementTypeIdentifier>.formEditor.propertyCollections.finishers.[*].identifier
- Data type
- string
- Needed by
- Backend (form editor)
- Mandatory
- No
- Default value
- Depends (see concrete element configuration)
- Good to know
- Description
- Identifies the finisher which should be attached to the form definition. Must be equal to a existing
<finisherIdentifier>
.
formEditor.propertyCollections.finishers.[*].editors¶
- Option path
- TYPO3.CMS.Form.prototypes.<prototypeIdentifier>.formElementsDefinition.<formElementTypeIdentifier>.formEditor.propertyCollections.finishers.[*].editors
- Data type
- string
- Needed by
- Backend (form editor)
- Mandatory
- No
- Default value
- Depends (see concrete element configuration)
- Good to know
- Description
- Array with available
inspector editors
for this finisher.
formEditor.label¶
- Option path
- TYPO3.CMS.Form.prototypes.<prototypeIdentifier>.formElementsDefinition.<formElementTypeIdentifier>.formEditor.label
- Data type
- string
- Needed by
- Backend (form editor)
- Mandatory
- Yes
- Default value
- Depends (see concrete element configuration)
- Good to know
- Description
- This label will be shown within the “new element” Modal.
formEditor.group¶
- Option path
- TYPO3.CMS.Form.prototypes.<prototypeIdentifier>.formElementsDefinition.<formElementTypeIdentifier>.formEditor.group
- Data type
- string
- Needed by
- Backend (form editor)
- Mandatory
- No
- Related options
- Default value
- Depends (see concrete element configuration)
- Description
- Define within which group within the
form editor
“new Element” modal the form element should be shown. Thegroup
value must be equal to an array key withinformElementGroups
.
formEditor.groupSorting¶
- Option path
- TYPO3.CMS.Form.prototypes.<prototypeIdentifier>.formElementsDefinition.<formElementTypeIdentifier>.formEditor.groupSorting
- Data type
- int
- Needed by
- Backend (form editor)
- Mandatory
- No
- Default value
- Depends (see concrete element configuration)
- Description
- The position within the
formEditor.group
for this form element.
formEditor.iconIdentifier¶
- Option path
- TYPO3.CMS.Form.prototypes.<prototypeIdentifier>.formElementsDefinition.<formElementTypeIdentifier>.formEditor.iconIdentifier
- Data type
- string
- Needed by
- Backend (form editor)
- Mandatory
- Yes
- Default value
- Depends (see concrete element configuration)
- Description
An icon identifier which must be registered through the
\TYPO3\CMS\Core\Imaging\IconRegistry
. This icon will be shown within- “Inspector [FormElementHeaderEditor]”.
- “Abstract view formelement templates”.
Tree
component.- “new element” Modal
formEditor.editors¶
- [<formElementTypeIdentifier>][formEditor][editors]
- Properties
- Common [<formElementTypeIdentifier>][formEditor][editors][*] properties
- identifier
- templateName
- label
- propertyPath
- available inspector editors
- [CheckboxEditor]
- [CollectionElementHeaderEditor]
- [FinishersEditor]
- [FormElementHeaderEditor]
- [GridColumnViewPortConfigurationEditor]
- [MultiSelectEditor]
- [PropertyGridEditor]
- [RemoveElementEditor]
- [RequiredValidatorEditor]
- [SingleSelectEditor]
- [TextareaEditor]
- [TextEditor]
- [Typo3WinBrowserEditor]
- [ValidatorsEditor]
- [ValidationErrorMessageEditor]
Concrete configurations¶
- [AdvancedPassword]
- Properties
- implementationClassName
- properties.containerClassAttribute
- properties.elementClassAttribute
- properties.elementDescription
- properties.elementErrorClassAttribute
- properties.confirmationLabel
- properties.confirmationClassAttribute
- formEditor
- formEditor.editors.100
- formEditor.editors.200
- formEditor.editors.230
- formEditor.editors.300
- formEditor.editors.400
- formEditor.editors.700
- formEditor.editors.800
- formEditor.editors.900
- formEditor.editors.9999
- formEditor.predefinedDefaults
- formEditor.propertyCollections.validators.10
- formEditor.propertyCollections.validators.10.identifier
- formEditor.propertyCollections.validators.10.editors.100
- formEditor.propertyCollections.validators.10.editors.9999
- formEditor.propertyCollections.validators.20
- formEditor.propertyCollections.validators.20.identifier
- formEditor.propertyCollections.validators.20.editors.100
- formEditor.propertyCollections.validators.20.editors.9999
- formEditor.propertyCollections.validators.30
- formEditor.propertyCollections.validators.30.identifier
- formEditor.propertyCollections.validators.30.editors.100
- formEditor.propertyCollections.validators.30.editors.200
- formEditor.propertyCollections.validators.30.editors.300
- formEditor.propertyCollections.validators.30.editors.9999
- formEditor.propertyCollections.validators.40
- formEditor.propertyCollections.validators.40.identifier
- formEditor.propertyCollections.validators.40.editors.100
- formEditor.propertyCollections.validators.40.editors.9999
- formEditor.propertyCollections.validators.50
- formEditor.propertyCollections.validators.50.identifier
- formEditor.propertyCollections.validators.50.editors.100
- formEditor.propertyCollections.validators.50.editors.9999
- formEditor.propertyCollections.validators.60
- formEditor.propertyCollections.validators.60.identifier
- formEditor.propertyCollections.validators.60.editors.100
- formEditor.propertyCollections.validators.60.editors.9999
- formEditor.propertyCollections.validators.70
- formEditor.propertyCollections.validators.70.identifier
- formEditor.propertyCollections.validators.70.editors.100
- formEditor.propertyCollections.validators.70.editors.200
- formEditor.propertyCollections.validators.70.editors.300
- formEditor.propertyCollections.validators.70.editors.9999
- formEditor.propertyCollections.validators.80
- formEditor.propertyCollections.validators.80.identifier
- formEditor.propertyCollections.validators.80.editors.100
- formEditor.propertyCollections.validators.80.editors.200
- formEditor.propertyCollections.validators.80.editors.9999
- formEditor.label
- formEditor.group
- formEditor.groupSorting
- formEditor.iconIdentifier
- Properties
- [Checkbox]
- Properties
- implementationClassName
- properties.containerClassAttribute
- properties.elementClassAttribute
- properties.elementDescription
- properties.elementErrorClassAttribute
- properties.value
- formEditor
- formEditor.editors.100
- formEditor.editors.200
- formEditor.editors.230
- formEditor.editors.700
- formEditor.editors.800
- formEditor.editors.9999
- formEditor.predefinedDefaults
- formEditor.label
- formEditor.group
- formEditor.groupSorting
- formEditor.iconIdentifier
- Properties
- [Date]
- Properties
- implementationClassName
- properties.containerClassAttribute
- properties.displayFormat
- properties.elementClassAttribute
- properties.elementErrorClassAttribute
- properties.fluidAdditionalAttributes.pattern
- formEditor
- formEditor.editors.100
- formEditor.editors.200
- formEditor.editors.230
- formEditor.editors.500
- formEditor.editors.550
- formEditor.editors.700
- formEditor.editors.800
- formEditor.editors.900
- formEditor.editors.9999
- formEditor.predefinedDefaults
- formEditor.propertyCollections.validators.10
- formEditor.propertyCollections.validators.10.identifier
- formEditor.propertyCollections.validators.10.editors.100
- formEditor.propertyCollections.validators.10.editors.200
- formEditor.propertyCollections.validators.10.editors.250
- formEditor.propertyCollections.validators.10.editors.300
- formEditor.propertyCollections.validators.10.editors.9999
- formEditor.propertyCollections.validators.20
- formEditor.propertyCollections.validators.20.identifier
- formEditor.propertyCollections.validators.20.editors.100
- formEditor.propertyCollections.validators.20.editors.200
- formEditor.propertyCollections.validators.20.editors.9999
- formEditor.propertyCollections.validators.30
- formEditor.propertyCollections.validators.30.identifier
- formEditor.propertyCollections.validators.30.editors.100
- formEditor.propertyCollections.validators.30.editors.200
- formEditor.propertyCollections.validators.30.editors.300
- formEditor.propertyCollections.validators.30.editors.400
- formEditor.propertyCollections.validators.30.editors.9999
- formEditor.propertyCollections.validators.40
- formEditor.propertyCollections.validators.40.identifier
- formEditor.propertyCollections.validators.40.editors.100
- formEditor.propertyCollections.validators.40.editors.200
- formEditor.propertyCollections.validators.40.editors.9999
- formEditor.propertyCollections.validators.50
- formEditor.propertyCollections.validators.50.identifier
- formEditor.propertyCollections.validators.50.editors.100
- formEditor.propertyCollections.validators.50.editors.200
- formEditor.propertyCollections.validators.50.editors.9999
- formEditor.propertyCollections.validators.60
- formEditor.propertyCollections.validators.60.identifier
- formEditor.propertyCollections.validators.60.editors.100
- formEditor.propertyCollections.validators.60.editors.200
- formEditor.propertyCollections.validators.60.editors.9999
- formEditor.propertyCollections.validators.70
- formEditor.propertyCollections.validators.70.identifier
- formEditor.propertyCollections.validators.70.editors.100
- formEditor.propertyCollections.validators.70.editors.200
- formEditor.propertyCollections.validators.70.editors.300
- formEditor.propertyCollections.validators.70.editors.400
- formEditor.propertyCollections.validators.70.editors.9999
- formEditor.propertyCollections.validators.80
- formEditor.propertyCollections.validators.80.identifier
- formEditor.propertyCollections.validators.80.editors.100
- formEditor.propertyCollections.validators.80.editors.200
- formEditor.propertyCollections.validators.80.editors.300
- formEditor.propertyCollections.validators.80.editors.9999
- formEditor.label
- formEditor.group
- formEditor.groupSorting
- formEditor.iconIdentifier
- Properties
- [ContentElement]
- [DatePicker]
- Properties
- implementationClassName
- properties.containerClassAttribute
- properties.elementClassAttribute
- properties.elementDescription
- properties.elementErrorClassAttribute
- properties.timeSelectorClassAttribute
- properties.timeSelectorHourLabel
- properties.timeSelectorMinuteLabel
- properties.dateFormat
- properties.enableDatePicker
- properties.displayTimeSelector
- formEditor
- formEditor.editors.100
- formEditor.editors.200
- formEditor.editors.230
- formEditor.editors.300
- formEditor.editors.400
- formEditor.editors.500
- formEditor.editors.700
- formEditor.editors.800
- formEditor.editors.900
- formEditor.editors.9999
- formEditor.predefinedDefaults
- formEditor.propertyCollections.validators.10
- formEditor.propertyCollections.validators.10.identifier
- formEditor.propertyCollections.validators.10.editors.100
- formEditor.propertyCollections.validators.10.editors.9999
- formEditor.label
- formEditor.group
- formEditor.groupSorting
- formEditor.iconIdentifier
- Properties
- [Email]
- Properties
- implementationClassName
- properties.containerClassAttribute
- properties.elementClassAttribute
- properties.elementDescription
- properties.elementErrorClassAttribute
- validators
- formEditor
- formEditor.editors.100
- formEditor.editors.200
- formEditor.editors.230
- formEditor.editors.400
- formEditor.editors.500
- formEditor.editors.700
- formEditor.editors.800
- formEditor.editors.900
- formEditor.editors.9999
- formEditor.predefinedDefaults
- formEditor.propertyCollections.validators.40
- formEditor.propertyCollections.validators.40.identifier
- formEditor.propertyCollections.validators.40.editors.100
- formEditor.label
- formEditor.group
- formEditor.groupSorting
- formEditor.iconIdentifier
- Properties
- [Fieldset]
- Properties
- implementationClassName
- properties.elementClassAttribute
- properties.elementErrorClassAttribute
- renderingOptions._isCompositeFormElement
- formEditor
- formEditor.editors.100
- formEditor.editors.200
- formEditor.editors.700
- formEditor.editors.9999
- formEditor.predefinedDefaults
- formEditor.label
- formEditor.group
- formEditor.groupSorting
- formEditor.iconIdentifier
- formEditor._isCompositeFormElement
- Properties
- [FileUpload]
- Properties
- implementationClassName
- properties.containerClassAttribute
- properties.elementClassAttribute
- properties.elementDescription
- properties.elementErrorClassAttribute
- properties.saveToFileMount
- properties.allowedMimeTypes
- formEditor
- formEditor.editors.100
- formEditor.editors.200
- formEditor.editors.230
- formEditor.editors.300
- formEditor.editors.400
- formEditor.editors.700
- formEditor.editors.800
- formEditor.editors.900
- formEditor.editors.9999
- formEditor.predefinedDefaults
- formEditor.propertyCollections.validators.10
- formEditor.propertyCollections.validators.10.identifier
- formEditor.propertyCollections.validators.10.editors.100
- formEditor.propertyCollections.validators.10.editors.100
- formEditor.propertyCollections.validators.10.editors.100
- formEditor.propertyCollections.validators.10.editors.9999
- formEditor.label
- formEditor.group
- formEditor.groupSorting
- formEditor.iconIdentifier
- Properties
- [Form]
- Properties
- renderingOptions.translation.translationFile
- renderingOptions.templateRootPaths
- renderingOptions.partialRootPaths
- renderingOptions.layoutRootPaths
- renderingOptions.addQueryString
- renderingOptions.argumentsToBeExcludedFromQueryString
- renderingOptions.additionalParams
- renderingOptions.controllerAction
- renderingOptions.httpMethod
- renderingOptions.httpEnctype
- renderingOptions._isCompositeFormElement
- renderingOptions._isTopLevelFormElement
- renderingOptions.honeypot.enable
- renderingOptions.honeypot.formElementToUse
- renderingOptions.submitButtonLabel
- renderingOptions.skipUnknownElements
- formEditor
- formEditor.editors.100
- formEditor.editors.200
- formEditor.editors.300
- formEditor.editors.900
- formEditor.predefinedDefaults
- formEditor._isCompositeFormElement
- formEditor._isTopLevelFormElement
- formEditor.saveSuccessFlashMessageTitle
- formEditor.saveSuccessFlashMessageMessage
- formEditor.saveErrorFlashMessageTitle
- formEditor.saveErrorFlashMessageMessage
- formEditor.modalValidationErrorsDialogTitle
- formEditor.modalValidationErrorsConfirmButton
- formEditor.modalInsertPagesDialogTitle
- formEditor.modalInsertPagesDialogTitle
- formEditor.modalCloseDialogMessage
- formEditor.modalCloseDialogTitle
- formEditor.modalCloseConfirmButton
- formEditor.modalCloseCancleButton
- formEditor.modalRemoveElementDialogTitle
- formEditor.modalRemoveElementDialogMessage
- formEditor.modalRemoveElementConfirmButton
- formEditor.modalRemoveElementCancleButton
- formEditor.modalRemoveElementLastAvailablePageFlashMessageTitle
- formEditor.modalRemoveElementLastAvailablePageFlashMessageMessage
- formEditor.inspectorEditorFormElementSelectorNoElements
- formEditor.paginationTitle
- formEditor.iconIdentifier
- formEditor.propertyCollections.finishers.10
- formEditor.propertyCollections.finishers.10.identifier
- formEditor.propertyCollections.finishers.10.editors.100
- formEditor.propertyCollections.finishers.10.editors.200
- formEditor.propertyCollections.finishers.10.editors.300
- formEditor.propertyCollections.finishers.10.editors.400
- formEditor.propertyCollections.finishers.10.editors.500
- formEditor.propertyCollections.finishers.10.editors.600
- formEditor.propertyCollections.finishers.10.editors.700
- formEditor.propertyCollections.finishers.10.editors.800
- formEditor.propertyCollections.finishers.10.editors.900
- formEditor.propertyCollections.finishers.10.editors.1000
- formEditor.propertyCollections.finishers.10.editors.1000
- formEditor.propertyCollections.finishers.10.editors.9999
- formEditor.propertyCollections.finishers.20
- formEditor.propertyCollections.finishers.20.identifier
- formEditor.propertyCollections.finishers.20.editors.100
- formEditor.propertyCollections.finishers.20.editors.200
- formEditor.propertyCollections.finishers.20.editors.300
- formEditor.propertyCollections.finishers.20.editors.400
- formEditor.propertyCollections.finishers.20.editors.500
- formEditor.propertyCollections.finishers.20.editors.600
- formEditor.propertyCollections.finishers.20.editors.700
- formEditor.propertyCollections.finishers.20.editors.800
- formEditor.propertyCollections.finishers.20.editors.900
- formEditor.propertyCollections.finishers.20.editors.1000
- formEditor.propertyCollections.finishers.20.editors.1000
- formEditor.propertyCollections.finishers.20.editors.1200
- formEditor.propertyCollections.finishers.20.editors.9999
- formEditor.propertyCollections.finishers.30
- formEditor.propertyCollections.finishers.30.identifier
- formEditor.propertyCollections.finishers.30.editors.100
- formEditor.propertyCollections.finishers.30.editors.200
- formEditor.propertyCollections.finishers.30.editors.300
- formEditor.propertyCollections.finishers.30.editors.9999
- formEditor.propertyCollections.finishers.40
- formEditor.propertyCollections.finishers.40.identifier
- formEditor.propertyCollections.finishers.40.editors.100
- formEditor.propertyCollections.finishers.40.editors.9999
- formEditor.propertyCollections.finishers.50
- formEditor.propertyCollections.finishers.50.identifier
- formEditor.propertyCollections.finishers.50.editors.100
- formEditor.propertyCollections.finishers.50.editors.9999
- formEditor.propertyCollections.finishers.60
- formEditor.propertyCollections.finishers.60.identifier
- formEditor.propertyCollections.finishers.60.editors.100
- formEditor.propertyCollections.finishers.60.editors.9999
- formEditor.propertyCollections.finishers.70
- formEditor.propertyCollections.finishers.70.identifier
- formEditor.propertyCollections.finishers.70.editors.100
- formEditor.propertyCollections.finishers.70.editors.9999
- formEditor.propertyCollections.finishers.80
- formEditor.propertyCollections.finishers.80.identifier
- formEditor.propertyCollections.finishers.80.editors.100
- formEditor.propertyCollections.finishers.80.editors.9999
- Properties
- [GridContainer]
- Properties
- implementationClassName
- properties.containerClassAttribute
- properties.elementClassAttribute
- properties.elementErrorClassAttribute
- properties.gridColumnClassAutoConfiguration.gridSize
- properties.gridColumnClassAutoConfiguration.viewPorts
- properties.gridColumnClassAutoConfiguration.viewPorts.[*].classPattern
- renderingOptions._isCompositeFormElement
- renderingOptions._isGridContainerFormElement
- formEditor
- formEditor.editors.100
- formEditor.editors.200
- formEditor.editors.9999
- formEditor.predefinedDefaults
- formEditor._isCompositeFormElement
- formEditor._isGridContainerFormElement
- formEditor.label
- formEditor.group
- formEditor.groupSorting
- formEditor.iconIdentifier
- Properties
- [GridRow]
- Properties
- implementationClassName
- properties.containerClassAttribute
- properties.elementClassAttribute
- properties.elementErrorClassAttribute
- properties.gridColumnClassAutoConfiguration.gridSize
- properties.gridColumnClassAutoConfiguration.viewPorts
- properties.gridColumnClassAutoConfiguration.viewPorts.[*].classPattern
- renderingOptions._isCompositeFormElement
- renderingOptions._isGridRowFormElement
- formEditor
- formEditor.editors.100
- formEditor.editors.200
- formEditor.editors.700
- formEditor.editors.9999
- formEditor.predefinedDefaults
- formEditor._isCompositeFormElement
- formEditor._isGridRowFormElement
- formEditor.label
- formEditor.group
- formEditor.groupSorting
- formEditor.iconIdentifier
- Properties
- [Hidden]
- Properties
- implementationClassName
- properties.containerClassAttribute
- properties.elementClassAttribute
- properties.elementErrorClassAttribute
- formEditor
- formEditor.editors.100
- formEditor.editors.200
- formEditor.editors.300
- formEditor.editors.700
- formEditor.editors.9999
- formEditor.predefinedDefaults
- formEditor.label
- formEditor.group
- formEditor.groupSorting
- formEditor.iconIdentifier
- Properties
- [Honeypot]
- [ImageUpload]
- Properties
- implementationClassName
- properties.containerClassAttribute
- properties.elementClassAttribute
- properties.elementDescription
- properties.elementErrorClassAttribute
- properties.saveToFileMount
- properties.allowedMimeTypes
- properties.imageLinkMaxWidth
- properties.imageMaxWidth
- properties.imageMaxHeight
- formEditor
- formEditor.editors.100
- formEditor.editors.200
- formEditor.editors.230
- formEditor.editors.300
- formEditor.editors.400
- formEditor.editors.700
- formEditor.editors.800
- formEditor.editors.900
- formEditor.editors.9999
- formEditor.predefinedDefaults
- formEditor.propertyCollections.validators.10
- formEditor.propertyCollections.validators.10.identifier
- formEditor.propertyCollections.validators.10.editors.100
- formEditor.propertyCollections.validators.10.editors.100
- formEditor.propertyCollections.validators.10.editors.100
- formEditor.propertyCollections.validators.10.editors.9999
- formEditor.label
- formEditor.group
- formEditor.groupSorting
- formEditor.iconIdentifier
- Properties
- [MultiCheckbox]
- Properties
- implementationClassName
- properties.containerClassAttribute
- properties.elementClassAttribute
- properties.elementDescription
- properties.elementErrorClassAttribute
- formEditor
- formEditor.editors.100
- formEditor.editors.200
- formEditor.editors.230
- formEditor.editors.300
- formEditor.editors.700
- formEditor.editors.800
- formEditor.editors.900
- formEditor.editors.9999
- formEditor.predefinedDefaults
- formEditor.propertyCollections.validators.10
- formEditor.propertyCollections.validators.10.identifier
- formEditor.propertyCollections.validators.10.editors.100
- formEditor.propertyCollections.validators.10.editors.100
- formEditor.propertyCollections.validators.10.editors.100
- formEditor.propertyCollections.validators.10.editors.9999
- formEditor.label
- formEditor.group
- formEditor.groupSorting
- formEditor.iconIdentifier
- Properties
- [MultiSelect]
- Properties
- implementationClassName
- properties.containerClassAttribute
- properties.elementClassAttribute
- properties.elementDescription
- properties.elementErrorClassAttribute
- properties.prependOptionLabel
- properties.prependOptionValue
- formEditor
- formEditor.editors.100
- formEditor.editors.200
- formEditor.editors.230
- formEditor.editors.250
- formEditor.editors.300
- formEditor.editors.700
- formEditor.editors.800
- formEditor.editors.900
- formEditor.editors.9999
- formEditor.predefinedDefaults
- formEditor.propertyCollections.validators.10
- formEditor.propertyCollections.validators.10.identifier
- formEditor.propertyCollections.validators.10.editors.100
- formEditor.propertyCollections.validators.10.editors.100
- formEditor.propertyCollections.validators.10.editors.100
- formEditor.propertyCollections.validators.10.editors.9999
- formEditor.label
- formEditor.group
- formEditor.groupSorting
- formEditor.iconIdentifier
- Properties
- [Number]
- Properties
- implementationClassName
- properties.containerClassAttribute
- properties.elementClassAttribute
- properties.elementDescription
- properties.elementErrorClassAttribute
- validators
- formEditor
- formEditor.editors.100
- formEditor.editors.200
- formEditor.editors.230
- formEditor.editors.400
- formEditor.editors.500
- formEditor.editors.700
- formEditor.editors.800
- formEditor.editors.900
- formEditor.editors.9999
- formEditor.predefinedDefaults
- formEditor.propertyCollections.validators.60
- formEditor.propertyCollections.validators.60.identifier
- formEditor.propertyCollections.validators.60.editors.100
- formEditor.propertyCollections.validators.70
- formEditor.propertyCollections.validators.70.identifier
- formEditor.propertyCollections.validators.70.editors.100
- formEditor.propertyCollections.validators.70.editors.200
- formEditor.propertyCollections.validators.70.editors.300
- formEditor.propertyCollections.validators.70.editors.9999
- formEditor.label
- formEditor.group
- formEditor.groupSorting
- formEditor.iconIdentifier
- Properties
- [Page]
- Properties
- implementationClassName
- renderingOptions._isCompositeFormElement
- renderingOptions._isTopLevelFormElement
- renderingOptions.nextButtonLabel
- renderingOptions.previousButtonLabel
- formEditor
- formEditor.editors.100
- formEditor.editors.200
- formEditor.editors.300
- formEditor.editors.400
- formEditor.editors.9999
- formEditor.predefinedDefaults
- formEditor._isCompositeFormElement
- formEditor._isTopLevelFormElement
- formEditor.label
- formEditor.group
- formEditor.groupSorting
- formEditor.iconIdentifier
- Properties
- [Password]
- Properties
- implementationClassName
- properties.containerClassAttribute
- properties.elementClassAttribute
- properties.elementDescription
- properties.elementErrorClassAttribute
- formEditor
- formEditor.editors.100
- formEditor.editors.200
- formEditor.editors.230
- formEditor.editors.400
- formEditor.editors.500
- formEditor.editors.700
- formEditor.editors.800
- formEditor.editors.900
- formEditor.editors.9999
- formEditor.predefinedDefaults
- formEditor.propertyCollections.validators.10
- formEditor.propertyCollections.validators.10.identifier
- formEditor.propertyCollections.validators.10.editors.100
- formEditor.propertyCollections.validators.10.editors.9999
- formEditor.propertyCollections.validators.20
- formEditor.propertyCollections.validators.20.identifier
- formEditor.propertyCollections.validators.20.editors.100
- formEditor.propertyCollections.validators.20.editors.9999
- formEditor.propertyCollections.validators.30
- formEditor.propertyCollections.validators.30.identifier
- formEditor.propertyCollections.validators.30.editors.100
- formEditor.propertyCollections.validators.30.editors.200
- formEditor.propertyCollections.validators.30.editors.300
- formEditor.propertyCollections.validators.30.editors.9999
- formEditor.propertyCollections.validators.40
- formEditor.propertyCollections.validators.40.identifier
- formEditor.propertyCollections.validators.40.editors.100
- formEditor.propertyCollections.validators.40.editors.9999
- formEditor.propertyCollections.validators.50
- formEditor.propertyCollections.validators.50.identifier
- formEditor.propertyCollections.validators.50.editors.100
- formEditor.propertyCollections.validators.50.editors.9999
- formEditor.propertyCollections.validators.60
- formEditor.propertyCollections.validators.60.identifier
- formEditor.propertyCollections.validators.60.editors.100
- formEditor.propertyCollections.validators.60.editors.9999
- formEditor.propertyCollections.validators.70
- formEditor.propertyCollections.validators.70.identifier
- formEditor.propertyCollections.validators.70.editors.100
- formEditor.propertyCollections.validators.70.editors.200
- formEditor.propertyCollections.validators.70.editors.300
- formEditor.propertyCollections.validators.70.editors.9999
- formEditor.propertyCollections.validators.80
- formEditor.propertyCollections.validators.80.identifier
- formEditor.propertyCollections.validators.80.editors.100
- formEditor.propertyCollections.validators.80.editors.200
- formEditor.propertyCollections.validators.80.editors.9999
- formEditor.label
- formEditor.group
- formEditor.groupSorting
- formEditor.iconIdentifier
- Properties
- [RadioButton]
- Properties
- implementationClassName
- properties.containerClassAttribute
- properties.elementClassAttribute
- properties.elementDescription
- properties.elementErrorClassAttribute
- formEditor
- formEditor.editors.100
- formEditor.editors.200
- formEditor.editors.230
- formEditor.editors.300
- formEditor.editors.700
- formEditor.editors.800
- formEditor.editors.9999
- formEditor.predefinedDefaults
- formEditor.label
- formEditor.group
- formEditor.groupSorting
- formEditor.iconIdentifier
- Properties
- [SingleSelect]
- Properties
- implementationClassName
- properties.containerClassAttribute
- properties.elementClassAttribute
- properties.elementDescription
- properties.elementErrorClassAttribute
- properties.prependOptionLabel
- properties.prependOptionValue
- formEditor
- formEditor.editors.100
- formEditor.editors.200
- formEditor.editors.230
- formEditor.editors.250
- formEditor.editors.300
- formEditor.editors.700
- formEditor.editors.800
- formEditor.editors.9999
- formEditor.predefinedDefaults
- formEditor.label
- formEditor.group
- formEditor.groupSorting
- formEditor.iconIdentifier
- Properties
- [StaticText]
- [SummaryPage]
- Properties
- implementationClassName
- renderingOptions._isCompositeFormElement
- renderingOptions._isTopLevelFormElement
- renderingOptions.nextButtonLabel
- renderingOptions.previousButtonLabel
- formEditor
- formEditor.editors.100
- formEditor.editors.200
- formEditor.editors.300
- formEditor.editors.400
- formEditor.editors.9999
- formEditor.predefinedDefaults
- formEditor._isCompositeFormElement
- formEditor._isTopLevelFormElement
- formEditor.label
- formEditor.group
- formEditor.groupSorting
- formEditor.iconIdentifier
- Properties
- [Telephone]
- Properties
- implementationClassName
- properties.containerClassAttribute
- properties.elementClassAttribute
- properties.elementDescription
- properties.elementErrorClassAttribute
- validators
- formEditor
- formEditor.editors.100
- formEditor.editors.200
- formEditor.editors.230
- formEditor.editors.400
- formEditor.editors.500
- formEditor.editors.700
- formEditor.editors.800
- formEditor.editors.900
- formEditor.editors.9999
- formEditor.propertyCollections.validators.80
- formEditor.propertyCollections.validators.80.identifier
- formEditor.propertyCollections.validators.80.editors.100
- formEditor.label
- formEditor.group
- formEditor.groupSorting
- formEditor.iconIdentifier
- Properties
- [Text]
- Properties
- implementationClassName
- properties.containerClassAttribute
- properties.elementClassAttribute
- properties.elementDescription
- properties.elementErrorClassAttribute
- formEditor
- formEditor.editors.100
- formEditor.editors.200
- formEditor.editors.230
- formEditor.editors.400
- formEditor.editors.500
- formEditor.editors.700
- formEditor.editors.800
- formEditor.editors.900
- formEditor.editors.9999
- formEditor.predefinedDefaults
- formEditor.propertyCollections.validators.10
- formEditor.propertyCollections.validators.10.identifier
- formEditor.propertyCollections.validators.10.editors.100
- formEditor.propertyCollections.validators.10.editors.9999
- formEditor.propertyCollections.validators.20
- formEditor.propertyCollections.validators.20.identifier
- formEditor.propertyCollections.validators.20.editors.100
- formEditor.propertyCollections.validators.20.editors.9999
- formEditor.propertyCollections.validators.30
- formEditor.propertyCollections.validators.30.identifier
- formEditor.propertyCollections.validators.30.editors.100
- formEditor.propertyCollections.validators.30.editors.200
- formEditor.propertyCollections.validators.30.editors.300
- formEditor.propertyCollections.validators.30.editors.9999
- formEditor.propertyCollections.validators.40
- formEditor.propertyCollections.validators.40.identifier
- formEditor.propertyCollections.validators.40.editors.100
- formEditor.propertyCollections.validators.40.editors.9999
- formEditor.propertyCollections.validators.50
- formEditor.propertyCollections.validators.50.identifier
- formEditor.propertyCollections.validators.50.editors.100
- formEditor.propertyCollections.validators.50.editors.9999
- formEditor.propertyCollections.validators.60
- formEditor.propertyCollections.validators.60.identifier
- formEditor.propertyCollections.validators.60.editors.100
- formEditor.propertyCollections.validators.60.editors.9999
- formEditor.propertyCollections.validators.70
- formEditor.propertyCollections.validators.70.identifier
- formEditor.propertyCollections.validators.70.editors.100
- formEditor.propertyCollections.validators.70.editors.200
- formEditor.propertyCollections.validators.70.editors.300
- formEditor.propertyCollections.validators.70.editors.9999
- formEditor.propertyCollections.validators.80
- formEditor.propertyCollections.validators.80.identifier
- formEditor.propertyCollections.validators.80.editors.100
- formEditor.propertyCollections.validators.80.editors.200
- formEditor.propertyCollections.validators.80.editors.9999
- formEditor.label
- formEditor.group
- formEditor.groupSorting
- formEditor.iconIdentifier
- Properties
- [Textarea]
- Properties
- implementationClassName
- properties.containerClassAttribute
- properties.elementClassAttribute
- properties.elementDescription
- properties.elementErrorClassAttribute
- formEditor
- formEditor.editors.100
- formEditor.editors.200
- formEditor.editors.230
- formEditor.editors.400
- formEditor.editors.500
- formEditor.editors.700
- formEditor.editors.800
- formEditor.editors.900
- formEditor.editors.9999
- formEditor.predefinedDefaults
- formEditor.propertyCollections.validators.10
- formEditor.propertyCollections.validators.10.identifier
- formEditor.propertyCollections.validators.10.editors.100
- formEditor.propertyCollections.validators.10.editors.9999
- formEditor.propertyCollections.validators.20
- formEditor.propertyCollections.validators.20.identifier
- formEditor.propertyCollections.validators.20.editors.100
- formEditor.propertyCollections.validators.20.editors.9999
- formEditor.propertyCollections.validators.30
- formEditor.propertyCollections.validators.30.identifier
- formEditor.propertyCollections.validators.30.editors.100
- formEditor.propertyCollections.validators.30.editors.200
- formEditor.propertyCollections.validators.30.editors.300
- formEditor.propertyCollections.validators.30.editors.9999
- formEditor.propertyCollections.validators.40
- formEditor.propertyCollections.validators.40.identifier
- formEditor.propertyCollections.validators.40.editors.100
- formEditor.propertyCollections.validators.40.editors.9999
- formEditor.propertyCollections.validators.50
- formEditor.propertyCollections.validators.50.identifier
- formEditor.propertyCollections.validators.50.editors.100
- formEditor.propertyCollections.validators.50.editors.9999
- formEditor.propertyCollections.validators.60
- formEditor.propertyCollections.validators.60.identifier
- formEditor.propertyCollections.validators.60.editors.100
- formEditor.propertyCollections.validators.60.editors.9999
- formEditor.propertyCollections.validators.70
- formEditor.propertyCollections.validators.70.identifier
- formEditor.propertyCollections.validators.70.editors.100
- formEditor.propertyCollections.validators.70.editors.200
- formEditor.propertyCollections.validators.70.editors.300
- formEditor.propertyCollections.validators.70.editors.9999
- formEditor.propertyCollections.validators.80
- formEditor.propertyCollections.validators.80.identifier
- formEditor.propertyCollections.validators.80.editors.100
- formEditor.propertyCollections.validators.80.editors.200
- formEditor.propertyCollections.validators.80.editors.9999
- formEditor.label
- formEditor.group
- formEditor.groupSorting
- formEditor.iconIdentifier
- Properties
- [Url]
- Properties
- implementationClassName
- properties.containerClassAttribute
- properties.elementClassAttribute
- properties.elementDescription
- properties.elementErrorClassAttribute
- validators
- formEditor
- formEditor.editors.100
- formEditor.editors.200
- formEditor.editors.230
- formEditor.editors.400
- formEditor.editors.500
- formEditor.editors.700
- formEditor.editors.800
- formEditor.editors.900
- formEditor.editors.9999
- formEditor.propertyCollections.validators.80
- formEditor.propertyCollections.validators.80.identifier
- formEditor.propertyCollections.validators.80.editors.100
- formEditor.label
- formEditor.group
- formEditor.groupSorting
- formEditor.iconIdentifier
- Properties