Important: #103392 - Form framework select markup changed

See forge#103392

Description

With forge#103117, the elementClassAttribute of the "SingleSelect", "CountrySelect" and "MultiSelect" fields got changed from form-control to form-select in EXT:form, as defined by Bootstrap, if the Bootstrap 5 markup (templateVariant: version2) is used.

If needed, the old markup can be restored by overriding the configuration as follows:

prototypes:
  standard:
    formElementsDefinition:
      CountrySelect:
        variants:
          -
            identifier: template-variant
            properties:
              elementClassAttribute: form-control
      MultiSelect:
        variants:
          -
            identifier: template-variant
            properties:
              elementClassAttribute: form-control
      SingleSelect:
        variants:
          -
            identifier: template-variant
            properties:
              elementClassAttribute: form-control
Copied!