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)
}
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 .
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)
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What version? This is fixed in recent versions.
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.