Hi all,
when creating (editting) an issue in JIRA I need to check some fields if they are not empty or not selected and if so, stop the submission of the creating/editting the issue so that the user can fill in the fields. The problem is that if I try to use this style of the code
AJS.$('form').submit(function(){ if(!someValidation){ return false; } }
The handling of the event goes well the problem is that even if the handling is executed and the propagation of the event should be stopped by the jQuery the submission still executes even though it enters the "if" and returns false. Is this some feature of JIRA 5.x where in popup window (create/edit screen) is impossible to do it this way? If so is there some workaround to stop submission or is this not allowed in JIRA 5.x at all?
Thanks for any info in advance.
Hi all,
found the answer to this. It is necessary to use "before-submit" event for this. I.e.:
AJS.$('form').bind("before-submit", function(event){ if(!someVerification){ event.preventDefault(); // this will stop the event from further propagation and the submission will not be executed event.stopPropagation(); //not always necessary } });
fsdfdsafsd
I faced with that problem before but avoided it by disabling submit button when verification not right. This solution by you is fine too and I think that would use it in future. Thanks for you question and answer.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can you please provide your code on how to disable to Submit / create button?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.