How to create an entity reference field which will allow unlimited values in a configuration form?

1.9k Views Asked by At
  public function buildForm(array $form, FormStateInterface $form_state) {
          $form = parent::buildForm($form, $form_state);
          $config = $this->config('category_dynamic_block.settings');

          $form['section_title'] = array(
            '#type' => 'textfield',
            '#title' => $this->t('Section Title'),
            '#description' => $this->t('Enter a Section Title'),
          );

          $form['term_name'] = array(
            '#type' => 'entity_autocomplete',
            '#target_type' => 'taxonomy_term',
            '#selection_settings' => [
                 'target_bundles' => array('categories'),
            ],
            '#title' => $this->t('Term Name'),
              '#description' => $this->t('Enter a Category Vocab Term Name'),
          );

          $form['page_title'] = array(
            '#type' => 'entity_autocomplete',
            '#target_type' => 'node',
            '#selection_settings' => [
                'target_bundles' => array('article'),
            ],
            '#title' => $this->t('Page Title (' . $i . ')'),
            '#description' => $this->t('Enter Page Title to be displayed'),
          );

          return $form;}

I'm creating a configuration form and I'm trying to find if there is a way in drupal 8 which will allow the user to enter multiple values for $form['page_title'] field.

1

There are 1 best solutions below

0
On

This question (unlimited text fields with form api) may be what you are looking for: https://drupal.stackexchange.com/questions/208012/unlimited-textfields-with-form-api

Basically you'll need to add some ajax:

'#ajax' => [
  'callback' => array($this, 'addMultipleItems'),
  'event' => 'change',
  'progress' => array(
    'type' => 'throbber',
    'message' => t('Adding another item...'),
  ),
],