saveCurrentRecordWithoutEvents

Works exactly like saveCurrentRecord. Except, that it does not trigger any events (like close on save).

Example Usages

Simple (pay attention to the await keyword)

await app.saveCurrentRecordWithoutEvents();

Return Values

The saveCurrentRecordWithoutEvents function returns a Promise. If the validation of input is successful, it proceeds to save the current record without triggering additional events. The function then returns the result of the save operation (internally) obtained from the saveRecord function.

Last updated