Appearance
postUpdate
The postUpdate hook is executed after a row has been updated. It allows developers to run custom logic once the update is complete.
Parameters
| Parameter | Type | Description |
|---|---|---|
| getColumnValue | function | See getColumnValue(columnName) |
Return Value
None
✨ Example of a postUpdate Hook
This example calls a global function to perform additional tasks after a row has been updated.
js
((table, app) => {
sendAdminMail(rowId)
})