I often find that I will use the quick-search tool to navigate to issues which I know the ID for (e.g. press / and then enter the key such as JIRA-123).
What I would like to know is whether there is any functionality like this, but something that possibly provides an auto-complete-like UX (similar to the Issue Actions menu loaded with the . key) where I can start typing in JIRA-1 and it will show me the issues matching this and also include the summary field?
Yes there is a multi select autocomplete IssuePicker in Jira you can use.
in javascript
AJS.$(function() { var ip = new JIRA.IssuePicker({ element: AJS.$("#textInputElement"), userEnteredOptionsMsg: AJS.params.labelNew, uppercaseUserEnteredOnSelect: true, }); });
in vm template
<input id="textInputElement" type="text" />
when the page loads the script becomes active, picks the textInputElement and turns it into an issue picker.
make sure the script is added to plugin webresources and that it is loaded into html. If it doesnt, give me a hint ill tell you what to do.
if you rather need a single select issue picker you have to make your own issue picker by extending JIRA.SingleSelect.
you have to write your won issue picker custom field because as of now this feature not yet avilable on jira, check this
https://jira.atlassian.com/browse/JRA-10666
check the following plugin
https://marketplace.atlassian.com/plugins/com.mizan.issuepicker
or you can try with this plugin
https://ecosystem.atlassian.net/wiki/display/JTOOL/JIRA+Toolkit+Plugin
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.