Important

You are browsing documentation for version 5.0 of OroCommerce, OroCRM, and OroPlatform, maintained until August 2024 and supported until March 2026. Read version 5.1 (the latest LTS version) of the Oro documentation to get up-to-date information.

See our Release Process documentation for more information on the currently supported and upcoming releases.

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