Files
Atay-Makhzan/web_src/js/features/comp/QuickSubmit.js
T

20 lines
665 B
JavaScript
Raw Normal View History

export function handleGlobalEnterQuickSubmit(target) {
let form = target.closest('form');
if (form) {
if (!form.checkValidity()) {
form.reportValidity();
2024-05-05 21:09:41 +08:00
} else {
// here use the event to trigger the submit event (instead of calling `submit()` method directly)
// otherwise the `areYouSure` handler won't be executed, then there will be an annoying "confirm to leave" dialog
form.dispatchEvent(new SubmitEvent('submit', {bubbles: true, cancelable: true}));
}
2024-05-05 21:09:41 +08:00
return true;
}
form = target.closest('.ui.form');
if (form) {
form.querySelector('.ui.primary.button')?.click();
2024-05-05 21:09:41 +08:00
return true;
}
2024-05-05 21:09:41 +08:00
return false;
}