"None" as a selectable option for a multi select

Created on 8 November 2022, over 2 years ago
Updated 25 May 2023, almost 2 years ago

Problem/Motivation

Currently, it is possible to select "None" as a multi select option. This should be only used as a fallback, if none options are selected.

After submitting the form, it will be gone, so it is only an outlying "beauty" problem.

Steps to reproduce

Enable choices via global or widget setting on a multi-select field.

Proposed resolution

Only use "None" as a fallback, when no option is selected, not as a selectable option.

Remaining tasks

User interface changes

API changes

Data model changes

πŸ“Œ Task
Status

Active

Version

2.0

Component

Code

Created by

πŸ‡©πŸ‡ͺGermany Grevil

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 States agileadam Maine, USA

    While it's not a fix, I find that adding this configuration option makes it easy for the user to remove the "-None-" value:

    {
        "removeItemButton": true
    }
    

    NOTE: If you leave the "-None-" option in place and choose another option (assuming allow multiple values), the "-None-" value won't get saved to the entity. Next time you edit the entity the "-None-" option won't show.

  • πŸ‡ΊπŸ‡ΈUnited States agileadam Maine, USA

    Here's another workaround. It doesn't seem to break anything. The result is a "Search..." placeholder in the empty box if there is no value, and a "Search..." placeholder at the end of any existing choices if there are any.

    1) Set your Choices configuration as follows:

    {
        "removeItemButton": true,
        "placeholder": true,
        "placeholderValue": "Search..."
    }
    

    2) Use hook_form_alter or hook_form_FORM_ID_alter to unset the _none option:

    /**
     * Implements hook_form_alter().
     */
    function mymodule_form_alter(&$form, FormStateInterface $form_state, $form_id) {
      if ($form_id == 'node_mycontenttype_edit_form') {
        unset($form['field_languages_spoken']['widget']['#options']['_none']);
      }
    }
    
  • πŸ‡©πŸ‡ͺGermany Anybody Porta Westfalica

    Thanks @agileadam, I'm thinking about if we should add a logic for this in the module. That would have to happen in JS, as that's how the widgets are applied (to be universal, not specific to certain forms).

    If we add anything, I'd vote to do it by a setting so this custom functionality can be turned off.

    Thanks for sharing your workarounds!

Production build 0.71.5 2024