I'm using formio with angular to render a custom form I've built - https://help.form.io/developer/info/angular/
I'm using the following to catch the submission and call my own logic, however the submit button stays disabled. I'm not actually using the formio server side so how do I re-enable the submit button without changing the source code? Is there an undocumented event for form submission success? I've tried also binding to 'formSubmission' event.
$scope.$on('formSubmit', function(err, data) {
event.preventDefault();
submitForm();
}
