I want to do Epic link required in Jira edit issue screen by using behaviour script.
Can you help me with script..
I have used behaviour script for this..
steps 1: Add behaviour
2: Add field ex: Epic Link
And paste the script in server side script
3: Add mapping Ex: projects and issue types and SAVE.
//Scriptif(getAction() == null){
getFieldById(getFieldChanged()).setRequired(true)
}else{
getFieldById(getFieldChanged()).setRequired(false)
}
Hello @Shivaprasad Hattaraki
If you are fine with epic link being mandatory in both create and edit screen then you dont' need any plugin for it. Just make the field mandatory in the field configuration which is associated with the issueType having the Epic link field.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
https://confluence.atlassian.com/adminjiraserver0711/specifying-field-behavior-955168173.html
"Making a field required"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi
Is it possible to make "epic Link" field mandatory in this way .
I want it mandatory for story (child of epic)
But under configuration schemes , Epic link is "locked" no way to make this mandatory from here .
any suggestions?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
it is not possible for Epic Link field
I think otherwise this questions wouldn't been raised
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I've found this question and answer by other users which might help you.
On the other hand: Does it need to be in the edit screen or is the create screen also fine? You could follow this JIRA Knowledgebase article how to do this with a validator on the create transition.
Cheers,
Matthias.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It is fine with both create and edit screen.
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.