Hi
In the "Resolve Issue" screen, when the user enters the issues in the "Issue" field:
my Custom script validator (ScriptRunner) Groovy code only picks up the first bug speciified (ex: PRJ-1)
def request = webwork.action.ActionContext.getRequest()
def linkedIssueString = request.getParameter('issuelinks-issues')
log.debug(String.format('linkedIssueString is [%s]', linkedIssueString))
The log files show:
linkedIssueString is [PRJ-1]
Can someone please let me know how i can access all issues specified (ex: PRJ-1 and PRJ-2)?
--OR--
How can i restrict the UI to allow the user to specify only just one Jira issue?
Thanks
--Andrew
Try to use
def linkedIssueString = request.getParameterValues("
issuelinks-issues");
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.