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!
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.