You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi...I configured a text field to show values from an API as in the Select List Conversions documentation. I configured the REST End Point with the corresponding behavior making sure I mapped JSD and Jira project. For the most part it works ok but when the values are shown in JSD, it is showing ALL values coming from the API instead of just the values matching the 4 characters being typed by the user. In Jira itself it works fine, the values shown are the one matching the characters being typed in the field, but it does not work that way in JSD. Is there a way to fix that?
Thank you
Here is the behavior (which is actually a copy of the one you have in the documentation):
getFieldByName("Project Names").convertToMultiSelect([
ajaxOptions: [
url : getBaseUrl() + "/rest/scriptrunner/latest/custom/getProjectNames",
query: true, // keep going back to the sever for each keystroke
minQueryLength: 4,
keyInputPeriod: 500,
formatResponse: "general",
]
])