Skip to content
🚀 Rapid Application Development with the App Builder

Reload page after form submit

This sample code uses the postFormSubmit hook to reload a page after a form submission. This is useful if you want to add entries to a registration form continuously.

✨ Example

Page is only reloaded on insert.

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

	if (mode === "INSERT") {
		window.location.reload();
	}

})