drupal 8 Calling a JavaScript function after an #AJAX event

8.7k Views Asked by At

I want that js script running after doing the ajax action.

For example, its work for Drupal 7:

  Drupal.behaviors.events = {
  attach: function(context, settings) {
    $('#example').bind('ajaxSuccess', function(data, status, xhr) {
      >>code here<<
    });
  }
};

how to write a successful script for Drupal 8?

1

There are 1 best solutions below

3
On

By using an object \Drupal\Core\Ajax\InvokeCommand on a \Drupal\Core\Ajax\AjaxResponse::addCommand().

Ajax can be used with forms to provide various things. The typical steps involved:

  • Create a form.
  • Within a ::buildForm() use a #ajax render element.
  • Create the callback.

There are two ways to respond to the ajax request. You may either respond with an AjaxResponse object or with HTML to replace the element with which may either be raw HTML or a render array.

To invoke your own Javascript function - as you want - you have to respond with an AjaxResponse object.

Here is a complete documentation of Ajax on Drupal 8.


Here is the example:

Partial ::buildForm() with the implementation of Ajax render element:

$form['submit'] = [
  '#type'        => 'submit',
  '#value'       => $this->t('Send'),
  '#ajax'        => [
    'callback' => [$this, 'respondToAjax'],
  ]
];

Here is the Ajax callback method, in the same form:

/**
 * @param array $form
 *   Form API array structure.
 * @param array $form_state
 *   Form state information.
 *
 * @return \Drupal\Core\Ajax\AjaxResponse
 *   Response object.
 */
public function respondToAjax(array &$form, FormStateInterface $form_state) {
  $response = new AjaxResponse();
  $response->addCommand(new InvokeCommand('#example', 'ajaxSuccess'));
  return $response;
}

You can find here a list of all commands you can pass in the response.