FormField pro = getFieldByName("QA Status") 
FormField ecp = getFieldByName("Reason")    
 
String vpro = (String) pro.getFormValue() 
String vecp = (String) ecp.getFormValue()      
 
	if (vpro == "Test in Product") {               
    	ecp.setRequired(true)   
} 
	else {         
	ecp.setRequired(false)  
}I tryed to use getFieldByID but no luck.
please, help!
Thank you!
Description was lost((
I have two custom field QA Status with id 10800 and Reason with id 13202
I need to make Reason required if QA Status is seet to "Test in product"
I try to use Behaviours (integrated wit Script Runner) on JIRA Standalone 6.3.3
My script is above.
 
 
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.