Important

You are browsing the documentation for version 4.1 of OroCommerce, OroCRM and OroPlatform, which is no longer maintained. Read version 5.1 (the latest LTS version) of the Oro documentation to get the updated information.

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

Mass Action Extension

The simplest mass action that works out-of-box with datagrids is delete. To enable it, add the following into the datagrids.yml of the corresponding grid :

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
 datagrids:
     users-grid:
     ...
     actions:
         delete:
             type:          delete
             label:         oro.grid.action.delete
             link:          delete_link
             icon:          trash-o
             acl_resource:  oro_user_user_delete

Empty checkboxes and the trash icon will then be displayed in every grid row. By clicking it, you can delete a single current row. A button with label is displayed on right side of the grid header. By click on it, the Delete mass action button appears. Check every necessary row manually or use the checkbox in the header and click Delete to perform the mass action.

If you wish to disable a mass action, specify the following:

1
2
3
4
5
6
7
 datagrids:
     users-grid:
         ...
         options:
             mass_actions:
                 delete:
                     enabled: false

In case of more complicated mass types, register your service with the oro_datagrid.extension.mass_action.type tag:

1
2
3
4
5
  oro_customer.datagrid.extension.mass_action.handler.custom:
      class: Oro\Bundle\CustomerBundle\Datagrid\Extension\MassAction\CustomActionHandler
      ...
  tags:
      - { name: oro_datagrid.extension.mass_action.type, type: disableusers }

Then add the following configuration to the actions.yml file.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
 operations:
 ...
     user_disable:
         label: oro.user.action.disable.label
         acl_resource: oro_user_user_update
         entities:
             - Oro\Bundle\UserBundle\Entity\User
         routes:
             - oro_user_view
             - oro_user_index
         datagrids:
             - users-grid
         datagrid_options:
             mass_action:
                 type: disableusers
                 label: oro.customer.mass_actions.disable_customers.label
                 handler: oro_customer.datagrid.mass_action.customers_enable_switch.handler.disable
                 route: oro_datagrid_front_mass_action
                 route_parameters: []
                 icon: ban
                 data_identifier: customerUser.id
                 object_identifier: customerUser
                 defaultMessages:
                     confirm_title: oro.customer.mass_actions.disable_customers.confirm_title
                     confirm_content: oro.customer.mass_actions.disable_customers.confirm_content
                     confirm_ok: oro.customer.mass_actions.disable_customers.confirm_ok
                 allowedRequestTypes: [POST, DELETE]
                 requestType: [POST]

Note

  • allowedRequestTypes is intended to use for the mass action request server-side validation. If it is not specified, the request is compared to the GET method.
  • requestType is intended to be used for mass action to override the default HTTP request type GET to one from the allowed types. If it is not specified, the GET type is used.

See Operations on how to configure operations described.