Skip to content
🚀 Rapid Application Development with the App Builder

postFormSubmit

To run custom code after submission, use the postFormSubmit hook.

Parameters

ParameterTypeDescription
responseCodeenumOK | ERROR | INFO
modeenumINSERT | UPDATE | VIEW
getColumnValuefunctionSee getColumnValue(columnName)

Return Value

None

✨ Example Send Notification after Insert

js
((responseCode, mode, getColumnValue) => {

	if (responseCode === "OK" && mode === "INSERT") {
		// Send notification about new customer
		const customerNumber = getColumnValue("customerNumber")
		window.open("https://mydomain.com/send-notification/" + customerNumber)
	}

})