Skip to content
🚀 Rapid Application Development with the App Builder

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

Enables or disables inline editing for specifc fields.

Scope: TABLE

Parameters

ParameterTypeDescription
setobjectEnable or disable inline editing.

Structure parameter set

The columnName must match the name of the database table column.

js
{
	[columnName]: boolean,
}

Return Value

None

✨ Example

js
if (app.getUsername() === "anonymous") {
    app.setInlineEditing({
        "email": false,
        "first_name": false,
        "last_name": 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.