Add support for inline widget display

Created on 6 June 2019, almost 6 years ago
Updated 27 January 2023, about 2 years ago

Hi,

We used this module for an internal project and we think the widget is great, but opening a modal was a bit too much for us. We rather have the option to display the widget inline just below the field the widget is enabled on.

I will attach a patch that will implement this feature.

I've considered making this two separate functions rather then returning early in the code. So maybe the patch should contains the following (this is just an idea):

  public function formElement(FieldItemListInterface $items, $delta, array $element, array &$form, FormStateInterface $form_state) {

    $arr_element = parent::formElement($items, $delta, $element, $form, $form_state);

    if ($this->getSetting('inline') == TRUE) {
        $this->addInlineSearchForm($arr_element);
    } else {
        $this->addModalSearchForm($arr_element);
    }

    return $arr_element;
  }

Let me know what you think.

Thanks in advance.

Feature request
Status

Needs review

Version

2.0

Component

Code

Created by

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

Merge Requests

Comments & Activities

Not all content is available!

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

Production build 0.71.5 2024