Melissa
02/28/2023, 9:17 PMvar result = model.save(this.$savingForm.serializeObject(), {
wait: true,
forceUpdate: false,
success: function(model, response) {
……
},
error: function(model, response) {
………
}
});
return result;
where $this.savingForm
was set with jQuery on the form element.
It’s throwing an Uncaught (in promise) TypeError
error in the console. Has anyone seen this?
Thanks in advance!