Mass Edit Configuration
In CB-21.09 and newer, you can configure Mass Edit via the section massEdit in System Admin > Application Configuration:
For example, the default configuration is the following:
...
},

"massEdit" : {
"disableCheckMandatoryFieldsCheckbox" : false,
"enabled" : true,
"showResults" : null,
"showResultsDefault" : false
},
...
If no massEdit configuration is present, the defaults are as shown in the example above.
enabled (boolean, default value: true) ­ Determines whether the Mass Edit feature is enabled (true) or disabled (false).
allowPartialUpdates (boolean, default value: null) ­ Determines whether Mass Edit results are processed either:
Individually (in separate transactions) and shown separately (true),
Together (in a single transaction) without the results shown separately (false), or
Based on user preference (that can be either of the above two) set for each Mass Edit operation interactively (null).
allowPartialUpdatesDefault (boolean, default value: false) ­ Is only used if showResults is null, and defines the default value of the Allow Partial Updates (true or false).
disableCheckMandatoryFieldsCheckbox (boolean, default value: false) ­ Determines whether the Check mandatory fields during Mass Edit checkbox is displayed:
If set to false - there is a checkbox that is initially selected. This can be deselected if the user intends to skip the check for mandatory fields. In this case, all modifications take place irrespective of missing values.
If set to true - there is no checkbox, and mandatory fields are always checked.
* 
Only use the disableCheckMandatoryFieldsCheckbox in reasonable cases, modifying with missing mandatory fields can cause errors!
Was this helpful?