/** * Ajax callback to update the result container. */ public function ajaxCallback(array &$form, FormStateInterface $form_state): AjaxResponse { $response = new AjaxResponse(); $value = $form_state->getValue('example_text'); $response->addCommand(new HtmlCommand('#result-wrapper', $this->t('You typed: @value', ['@value' => $value]))); return $response; }
/** * {@inheritdoc} (No submission processing required.) */ public function submitForm(array &$form, FormStateInterface $form_state): void { } }
Creating a Custom Ajax Command Class
Defines a custom Ajax command class that implements Drupal’s CommandInterface. The command returns a JSON structure with a custom message.
Creating a Custom Ajax Command Class
/** * Defines a custom Ajax command. */ namespaceDrupal\my_module\Ajax; useDrupal\Core\Ajax\CommandInterface;
classCustomCommandimplementsCommandInterface { /** * The message to display. */ protectedstring$message;
/** * Constructs a CustomCommand object. */ public function __construct(string$message) { $this->$message = $message; }
/** * {@inheritdoc} */ public function render(): array { return [ 'command' => 'customCommand', 'message' => $this->$message, ]; } }
Dynamic Content Loading (“Load More”) Form
Custom form that displays a list of items and a "Load More" button. When the button is clicked, an Ajax callback appends new items to the list dynamically without a full page reload.
Dynamic Content Loading (“Load More”) Form
/** * Load More Form using AJAX. */ namespaceDrupal\my_module\Form;