> For the complete documentation index, see [llms.txt](https://gebra-it.gitbook.io/wiki/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://gebra-it.gitbook.io/wiki/client-api-reference/functions/savecurrentrecordwithoutevents.md).

# saveCurrentRecordWithoutEvents

Works exactly like [saveCurrentRecord](/wiki/client-api-reference/functions/savecurrentrecord.md). Except, that it does not trigger any events (like close on save).

## Example Usages

Simple (pay attention to the **await** keyword)

```javascript
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.
