How can I go about adding custom actions in the `massActionList`?
I've tried to set the `massActionList` variable inside my custom list JS file as follows:
But this doesn't seem to make any difference.
I've tried to set the `massActionList` variable inside my custom list JS file as follows:
Code:
massActionList: ['doSomething'],
checkAllResultMassActionList: ['doSomething'],
massActionDoSomething: function () {
console.assert();
},


Comment