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?
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:
::buildForm()
use a#ajax
render element.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:Here is the Ajax callback method, in the same form:
You can find here a list of all commands you can pass in the response.