It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
Have Projet Called "XX" which has 3 Issue Type, Each issue type having different create Screen.
I have Configured "Environment Drop Down List" Custom Filed In Three issue types.
Environment Field has " Dev, QA, PRod" value.
When I select "PROD" value, I have to Enable " PRoduction Category" Drop down List" Field. If i select other values, Have to hide "Production Category" Value.
I have implemented the same in Three issue types (Three Create issue Screen).
and also created Three diferent behvaiour also.
"ENvironment Custom field Not refreshing, IF i change issue type one to another, the one which i select last time, it would populate, i want to refresh each time .
i want to show environment default value "None" , if i turn any ther issue type.
example :
If i selet "Issue Type 1 ", then "Environment ="PRod", then i swith over, Issue type 2, but issue type 2 showing the"Enironment ="Prod", i wan to show th default value.
Does it make sense?
Environment : Field :
FormField Env = getFieldByName ("Environment")
FormField ProductionCategory = getFieldByName ("Production Category")
String EnvVal = (String) Env.getValue()
if (EnvVal == "PROD")
{
ProductionCategory.setHidden(false)
ProductionCategory.setRequired(true)
}
else {
ProductionCategory.setHidden(true)
ProductionCategory.setRequired(false)
}
I meant what version of the plugin. But ok so you are using an old version of the plugin. As I say this is fixed in recent versions but requires jira 6. No intention to backport my changes to previous versions.
FormField Env = getFieldByName ("Environment")
//hide value
FormField ProductionCategory = getFieldByName ("Production Category")
//Hide value
String EnvVal = (String) Env.getValue()
String pc = (String) ProductionCategory.getValue()
if (EnvVal == "PROD")
{
ProductionCategory.setHidden(false)
ProductionCategory.setRequired(true)
}
else {
ProductionCategory.setHidden(true)
ProductionCategory.setRequired(false)
}
ok. thanks. I have written Script while choosing "environement Type="Prod" , if i select "Prod", automatically, i have enabled "Prodctuion Category " Dropdown list". if i select "Dropdownlist" value as "ECR", am showig "ECR Details textbox.
if again change, environment type="Dev", I have hiddded "PRoction Category", ECR DEtails text box.
but if i choose again "Environment type="Prod", the procution category dropdwon choosing past value which i choose last time, i wan display Prodcuion category " Non" value.
Actually, Prodcuton category selection not going to Default Null value .
This community is celebrating its one-year anniversary and Atlassian co-founder Mike Cannon-Brookes has all the feels.
Read moreHey Atlassian Community! Today we are launching a bunch of customer stories about the amazing work teams, like Dropbox and Twilio, are doing with Jira. You can check out the stories here. The thi...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.