Hi all,
I have created a ScriptRunner IssuePicker field, and provided an initial JQL query to populate the listbox values. I want to modify the listbox values based on another field on the form (a Project pick list). So I have written a Behaviour to update the JQL query on the IssuePicker (named requestingEpic here):
def projectKey = projectValue.substring(9)
def query = "project = " + projectKey + " and issuetype = Epic and status != Done"
log.warn("new query is " + query)
requestingEpic.setConfigParam('currentJql', query)
What call do I now have to make to have that listbox run the new query I just gave it and update the listbox contents?
Thanks,
-Greg
Never mind, found the solution - this is exactly what I wanted to do!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.