Appearance
app.setInlineEditing({ [key]: boolean })
Enables or disables inline editing for specifc fields.
Scope: TABLE
Parameters
| Parameter | Type | Description |
|---|---|---|
| set | object | Enable 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.
