behaviours plugin - Create issue page, custom field value not refersh

prabhui September 11, 2013

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)

}

4 answers

0 votes
prabhui September 12, 2013

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 .

0 votes
prabhui September 12, 2013

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)

}

0 votes
prabhui September 11, 2013

JIRA 5.2

JamieA
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 12, 2013

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.

prabhui September 12, 2013

ok. thanks, can u pls clarify how can i "Refresh Drop down list "Default " value. posted my code below

0 votes
JamieA
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 11, 2013

What version? This is fixed in recent versions.

Suggest an answer

Log in or Sign up to answer