I have an event handler for OnSave form event following:
function saveEntityForm(executionContext) {
executionContext.getFormContext().data.save().then();
}
when I am clicking on Save button on the form getting a pop up with following texts:
Saving in Progress
Please wait while saving is completed Error code: 0x83215603
I am using Unified Interface.
What could be the reason of happening this issue and how to resolve it?
I have resolved the issue by myself adding setTimeout for my custom code instead of using explicit save method as following: