I have created a Project Lets call it "ABC";
within which I have Multiple SCRUM board. One of it "PQR"
I have Epics & Task assigned to these SCRUM board.
Now have created new EPIC "XYZ" with in the Project "ABC" when I create it using "CREATE" option it get created under all Issues and reflect in unassigned Issues. How can i tag this new EPIC "XYZ" to SCRUM board "PQR".
Thanks for response.
Hello,
If select list is not multiple select list, try below script
Option option1 = (Option) getCustomFieldValue(Field1);
def cv1 = option1.getValue() as Double;
...
Tuncay,
The fields a re single select lists.
When I modify the inline script as you suggested, I get the following
"unable to resolve class Option"
How do I resolve the class?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have aded this to the scripted field:
import com.atlassian.jira.issue.customfields.option
But get the message
"unable to resolve class com.atlassian.jira.issue.customfields.option"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have added this to the inline script:
import com.atlassian.jira.issue.customfields.option;
and now get the message
"unable to resolve class com.atlassian.jira.issue.customfields.option"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
For sure, you have to import it.
import com.atlassian.jira.issue.customfields.option.Option;
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.