Drupal is a registered trademark of Dries Buytaert
Release: Drupal 10.3.6 Update released for Drupal core (10.3.6)! Release: Drupal 11.0.5 Update released for Drupal core (11.0.5)! Release: Drupal 10.2.9 Update released for Drupal core (10.2.9)! Release: Drupal 10.2.10 Update released for Drupal core (10.2.10)! Release: Drupal 10.3.7 Update released for Drupal core (10.3.7)! Release: Drupal 11.0.6 Update released for Drupal core (11.0.6)! Release: Drupal 10.3.8 Update released for Drupal core (10.3.8)! Release: Drupal 11.0.7 Update released for Drupal core (11.0.7)! Module Revived: Translation Management Tool 8.x-1.19 Module tmgmt updated after 7 months of inactivity (8.x-1.19). Usage Milestone: Account field split Module account_field_split crossed 10,000 active installs.

Provides for a Javascript event when Views ajax has completed.
This module is useful for projects which do not use JQuery. If jQuery is being used then the ajaxComplete event should suffice.

Features

- Raise the event views_ajax_completed_event:views_ajax_completed on the document object when Views ajax has completed.
- The view_name and the view_display_id can be obtained from the detail property on the event object.

Example code:

(function(Drupal) {
  "use strict";

  Drupal.behaviors.testViewsAjaxCompleted = {
    attach: function(context, settings) {
      if (context === document) {
        document
        .addEventListener('views_ajax_completed_event:views_ajax_completed', function(e) {
          const messages = new Drupal.Message();
          messages.add('Caught Event: views_ajax_completed_event:views_ajax_completed');
          messages.add('event.detail: ' + JSON.stringify(e.detail));
        });
      }
    },
  };
})(Drupal);

Depends on

Dependencies of the latest stable release

No dependencies recorded for this project.

Required by

Tracked projects that depend on this one

No tracked projects depend on this one yet.

Activity

Tracked releases
1
Tracked since
Nov 2024
Latest release
1 year ago
Releases (12 mo)
0 ▼ from 1
Maintenance
Dormant

Releases

Version Type Core Release date
1.0.0-beta2 Pre-release Nov 19, 2024