Grid - Mass Edit Button

As a Salesforce admin, you can configure a Mass Edit button. GridMate provides a component to convert any list view to GM - ListView Grid on the fly. In the steps below we will configure such action on the Account object.

Mass Edit Button Setup

To trigger the Mass Edit, we have to configure a link on the Account object. The display type should be List Button without checkboxes.

/lightning/cmp/gmpkg__MassEditListViewComponent?c__object=Account&c__attributes=%7B%22canCreate%22%3A+false%2C%22canClone%22%3A+false%7D

Mass Edit can be enabled on any object by duplicating the link below and changing the c__object parameter and c_attributes if necessary.

c__attributes is an HTML encoded JSON to control the behavior of the grid. All the attributes are described here.

To encode a JSON, you can use your own tool or an online website.

List View Actions Setup

The link should be added to the list of actions on a ListView. All the steps are described 👉 here.

Mass Edit In Action

Last updated