There's some really cool stuff (Epic Reports and more seamless integration between JIRA and GH) in the latest version of GH (6.1.3). We're using onDemand - when can we expect to see that version published to onDemand?
TIA.
-Peter
My co-worker helped me with this, I dont know if it is the easiest possible but it works now :-)
import com.atlassian.jira.issue.fields.CustomField
import com.onresolve.jira.groovy.user.FormField
import com.atlassian.jira.issue.CustomFieldManager
import com.atlassian.jira.component.ComponentAccessor
def contract = getFieldById("customfield_10400")
FormField enddate = getFieldById("customfield_10402")
String contractlist = (String) contract.getValue()
if (contractlist.equals("Secondment") || contractlist.equals("Contract Employee") || contractlist.equals("Intern")) {
enddate.setRequired(true)
}
else {
enddate.setRequired(false)
}
If it can help other beginners !
Thanks! Im totally beginner)
And it works fine.
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.