endEdit
Saves any pending changes in the current record. Returns the saved record or false if nothing was saved.
Usage
const result = await dsMyDataObject.endEdit();
if (result) {
console.log('Record saved');
}API
endEdit(): Promise<T | false>;Last updated
Was this helpful?