Skip to content
🚀 Rapid Application Development with the App Builder

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

ParameterTypeDescription
getColumnValuefunctionSee 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)

})