Note:

If you want to create a new page for developers, you should create it on the Moodle Developer Resource site.

Modal and AJAX forms

From MoodleDocs
Revision as of 16:54, 27 January 2021 by Marina Glancy (talk | contribs)

Modal and AJAX forms

Important: This documentation is for Moodle 3.11 and above, for previous versions please use MForm Modal tutorial on how to create your own modal form.

Modal forms

To display a moodleform in a modal popup you need to:

  • create a class with the form definition extending \core_form\modal , do not add submit/cancel buttons to the form definition;
  • initialize the form in the listener to some javascript event (for example, a click on the "Add" or "Edit" link)

Example of modal form initialization in the Javascript

import ModalForm from 'core_form/modal'; import {get_string as getString} from 'core/str';

// .....

   document.querySelectorAll('[data-role=editfield][data-id]').addEventListener('click', e => {
       e.preventDefault();
       const element = e.target;
       const modal = new ModalForm({
           // Pass the name of your class here:
           formClass: "core_customfield\\field_config_form", 
           // Add as many arguments as you need, they will be passed to the form:
           args: {id: element.getAttribute('data-id')},
           // Pass any configuration settings to the modal dialogue, for example, the title:
           modalConfig: {title: getString('editingfield', 'core_customfield', element.getAttribute('data-name'))},
           // Pass the element that should get the focus after the modal dialogue is closed:
           returnFocus: element
       });
       // Override onSubmitSuccess() method if you want to execute something on form submit. Response will contain everything the process() function returned:
       modal.onSubmitSuccess = (response) => {
           console.log(response);
       }; 
   });

How it works

  • When an instance of the ModalForm class is created in the Javascript, the AJAX requests calls the web service core_form_modal_form_body. This web service creates a new instance of the form (specified in the formClass parameter), passes the arguments (args parameter), and returns the form HTML and JS similar to how Fragment does it. The form itself is then displayed inside the popup.
  • The ModalForm class listens to the click events on no-submit buttons, if such button is pressed, the new request is sent to the same web service and the form is re-rendered, client-side validation is not called in this case (example: adding a repeated element);
  • When "Cancel" or "Close" buttons in the modal dialogue are pressed, the ModalForm triggers necessary javascript events (to reset Atto autosave, to reset "dirty" form state, etc), the modal dialogue is closed and destroyed.
  • When the "Save" button in the modal dialogues is pressed and form is validated on the client side, the ModalForm collects form data and sends it in a AJAX request to the same web service core_form_modal_form_body. If the server-side validation failed, a form is re-rendered with all the errors information. If the form was submitted successfully, the modal dialogue is closed and destroyed automatically and the onSubmitSuccess() method is called.

AJAX forms

There are two use cases for the AJAX forms:

  • the form is already present on the page, we just want to handle submit/cancel buttons in the AJAX requests and not refresh the whole page
  • as a response to some user action (i.e. clicking a button), the form is dynamically loaded and added to the page, on submit/cancel this form is unloaded and removed from the page

Both cases are handled with the same javascript module core_form/ajaxform and have the same requirements:

  • form definition has to be in a class extending \core_form\modal (but unlike modal forms, for AJAX forms you will need to add the regular submit/cancel buttons);
  • there must be a specific container element in your HTML that does not have any other children except for the form;
  • the form must be initialized in the Javascript (initialization requires form class name and the container element);

Example of a persistent form with AJAX submission

Example of a dynamically loaded form