Option to make country an autocomplete textfield

Created on 25 December 2015, over 9 years ago
Updated 18 February 2024, about 1 year ago

Country is a very long list, and while most desktop browsers give the option of typing multiple letters (such as typing UNI to take you to the first country starting with "United"), most mobile browsers don't, so you've no choice except to scroll through hundreds of countries in the list.

Could an option be added to the field setup to chose whether the country sub-field should be a drop-down list or a autocomplete textfield?

James

💬 Support request
Status

Fixed

Component

User interface

Created by

🇮🇪Ireland lostcarpark

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • 🇬🇧United Kingdom lind101

    Just going to add this here for anyone landing here wanting to do this for all address_country form elements by default without having to write/configure custom FormElements/FormWidgets.

    /**
     * Implements hook_element_info_alter()
     */
    function mymodule_element_info_alter(array &$info) {
      if (isset($info['address_country'])) {
        // Add a process callback (after the defaults) for address_country form elements
        $info['address_country']['#process'][] = 'mymodule_process_address_country';
      }
    }
    
    /**
     * Process callback for all address_country form elements
     *
     * @param array $element
     * @param \Drupal\Core\Form\FormStateInterface $form_state
     *
     * @return array
     */
    function mymodule_process_address_country(array &$element, FormStateInterface $form_state) {
      $element['country_code']['#type'] = 'select2';
      return $element;
    }
    

    This will change the address_country element everywhere it is used on the site(even within the full address widget). If you want to be able to pick and choose where select2 is used, use one of the widget examples above!

    Cheers!

Production build 0.71.5 2024