I'm not returning a Promise from my onSubmit, instead dispatching an action to be later picked up in a saga. The saga calls, startSubmit('formName'), and then at some point later calling stopSubmit('formName', errors) (or just stopSubmit('formName') if everything was ok). In the...
All fine and dandy (if you are fine with calling server side code in a client...yuck!)...But, of course, GlideRecord is NOT available in a scoped application client script! Adding global. doesn't fix it either. But wait, there is a workaround for this.. option 2a... 2a) Take ...