Appearance
app.setBulkActions({ [key]: boolean })
Enables or disables bulk actions.
Scope: TABLE
Parameters
| Parameter | Type | Description |
|---|---|---|
| set | object | Enable or disable bullk actions. |
Structure parameter set
Possible values for bulkAction: pdf | csv | json | excel | xml | sql | delete | select.
js
{
[bulkAction]: boolean,
}Return Value
None
✨ Example
js
if (app.getUsername() === "anonymous") {
app.setBulkActions({
"pdf": true,
"xml": false,
"delete": false,
})
}Notes
Please be aware that the server will block any rights that surpass the app's configured limitations, even though permissions can be dynamically granted or revoked.
