Score:0

Rerun behaviors

ธง cn

In order to output the SearchApiAutoCompleteFormBlock (view) within a modal, we lost the bound JavaScript events on the input. In other words, the DOM element (<div>) for the block was recreated by JavaScript after Drupal adds the events.

Now we need to rebind the events for the autocomplete.

This is the behavior of the Search API autocomplete module.

Drupal.behaviors.searchApiAutocomplete = {
attach: function (context, settings) {
  // Find all our fields with autocomplete settings.
  $(context)
    .find('.ui-autocomplete-input[data-search-api-autocomplete-search]')
    .once('search-api-autocomplete')
    .each(function () {
      var uiAutocomplete = $(this).data('ui-autocomplete');
      if (!uiAutocomplete) {
        return;
      }
      var $element = uiAutocomplete.menu.element;
      $element.addClass('search-api-autocomplete-search');
      var elementSettings = autocomplete.getSettings(this, settings);
      if (elementSettings['delay']) {
        uiAutocomplete.options['delay'] = elementSettings['delay'];
      }
      if (elementSettings['min_length']) {
        uiAutocomplete.options['minLength'] = elementSettings['min_length'];
      }
      // Override the "select" callback of the jQuery UI autocomplete.
      var oldSelect = uiAutocomplete.options.select;
      uiAutocomplete.options.select = function (event, ui) {
        // If this is a URL suggestion, instead of autocompleting we
        // redirect the user to that URL.
        if (ui.item.url) {
          location.href = ui.item.url;
          return false;
        }

        var ret = oldSelect.apply(this, arguments);

        // If auto-submit is enabled, submit the form.
        if (elementSettings['auto_submit'] && elementSettings['selector']) {
          $(elementSettings['selector'], this.form).trigger('click');
        }

        return ret;
      };
    });
}

I would expect there is some kind of mechanism to re-register view block contexts. I have no idea if this can be done easily. Any help is appreciated.

cn flag
อาจเป็นความเข้าใจผิด แต่ถ้าคุณเปลี่ยน DOM แล้วและต้องการผูกพฤติกรรมใหม่ ตามปกติแล้ว ให้เรียกใช้ `Drupal.attachBehaviors()`
mogio avatar
cn flag
ขอบคุณไคลฟ์ ฉันลอง "Drupal.attachBehaviors()" มาก่อน - มันใช้งานไม่ได้เนื่องจากปัญหาที่ไม่ขึ้นต่อกันโดยสิ้นเชิง แต่โพสต์ของคุณช่วยได้เมื่อฉันตรวจสอบสคริปต์ทั้งหมดอีกครั้งและสามารถค้นหาปัญหาได้
คำถามนี้เป็นภาษาอื่นๆ:

โพสต์คำตอบ

คนส่วนใหญ่ไม่เข้าใจว่าการถามคำถามมากมายจะปลดล็อกการเรียนรู้และปรับปรุงความสัมพันธ์ระหว่างบุคคล ตัวอย่างเช่น ในการศึกษาของ Alison แม้ว่าผู้คนจะจำได้อย่างแม่นยำว่ามีคำถามกี่ข้อที่ถูกถามในการสนทนา แต่พวกเขาไม่เข้าใจความเชื่อมโยงระหว่างคำถามและความชอบ จากการศึกษาทั้ง 4 เรื่องที่ผู้เข้าร่วมมีส่วนร่วมในการสนทนาด้วยตนเองหรืออ่านบันทึกการสนทนาของผู้อื่น ผู้คนมักไม่ตระหนักว่าการถามคำถามจะมีอิทธิพลหรือมีอิทธิพลต่อระดับมิตรภาพระหว่างผู้สนทนา