You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There could be an easy alternative to vex.close() that would gather the form data before closing the pop-up, either a separate method like vex.submit(), or vex.close(bool shouldSubmit), that wouldn't count as cancel.
Currently, programmatically, I can only do
el.dispatchEvent(newEvent('submit'));
with el being the form, in order for the onSubmit handler to run and the provided callback to work properly.
The text was updated successfully, but these errors were encountered:
Using
There could be an easy alternative to
vex.close()
that would gather the form data before closing the pop-up, either a separate method likevex.submit()
, orvex.close(bool shouldSubmit)
, that wouldn't count as cancel.Currently, programmatically, I can only do
with
el
being the form, in order for theonSubmit
handler to run and the provided callback to work properly.The text was updated successfully, but these errors were encountered: