Skip to content
🚀 Rapid Application Development with the App Builder

postInsert

The postInsert hook is executed after a row has been inserted. It allows developers to run custom logic once the insert is complete.

Parameters

ParameterTypeDescription
getColumnValuefunctionSee getColumnValue(columnName)

Return Value

None

✨ Example of a postInsert Hook

This example calls a global function to perform additional tasks after a row has been inserted.

js
((table, app) => {

	sendAdminMail(rowId)

})