Hi,
This below code will applies for throughout Jira.
AJS.$(document).ready(function($) {
JIRA.bind(JIRA.Events.NEW_CONTENT_ADDED, function (e,context) {
/* Code */
});
});
I wanted to work my javascript will work on particular workflow transition screen.
How to do that? Any help would be appreciated.
Thanks
Hi,
You can put a check on the transition id, if that matches, then you can proceed with the code.
For e.g.
Following would only for Assigned transition.
AJS.$(document).ready(function($) {
JIRA.bind(JIRA.Events.NEW_CONTENT_ADDED, function (e,context) {
if(AJS.$("#issue-workflow-transition-submit").val()=="Assigned")
{alert("WOULD ONLY WORK FOR ASSIGNED TRANSITION")}
/* Code */
});
});
Other than that, if you have got ScriptRunner, you can use a simple scripted validator or postfunction according to your need on the worklfow transition, in the workflow directly.
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.