I'm using script runner behavior version 6.2.1 to populate value on my jira service desk customer portal screen.
Below is the code that I use to set the multi-user picker custom field:
def appManagerField = getFieldByName("Application Manager(s)")
appManagerField.setFormValue(['user1']);This piece of code is triggered because, when I print the log, I can see the value in the log file.
However, the custom field is not populated with the value that I want (user1 in this case).
Anyone could give advise on this please?