Skip to content
🚀 Rapid Application Development with the App Builder

app.setBulkActions({ [key]: boolean })

Enables or disables bulk actions.

Scope: TABLE

Parameters

ParameterTypeDescription
setobjectEnable 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.