Important

We are updating the images for OroCommerce version 6.1 to align with the latest changes in the back-office design. During this transition, some images may still show older versions. Thank you for your patience as we work to update all visuals to reflect these changes.

Mode Extension 

This extension provides the ability to work with the grid in different modes. There are two supported modes:

  • server (default) - all manipulations with data are performed on the backend side; the grid receives data via AJAX requests.

  • client - all manipulations with data are performed on the frontend side; no AJAX requests required. The client mode does not currently support filters.

Configuration example 

This grid will be rendered and processed in the client mode:

account-account-user-grid:
    options:
        mode: client
    ...

Related Articles