Migration

Target group: Developers, Integrators

From version 1.x/2.x to version 3.0

Since TYPO3 v12 LTS ships with an own country select form element which conflicts with this extension, the form type has to be adjusted in your forms:

Before:

fileadmin/form_definitions/my_form.form.yaml
renderables:
   -
      renderables:
         -
            type: CountrySelect
            identifier: my-countryselect
            label: 'Country'
Copied!

After:

fileadmin/form_definitions/my_form.form.yaml
renderables:
   -
      renderables:
         -
            type: ExtCountrySelect
            identifier: my-countryselect
            label: 'Country'
Copied!