Hello everyone I'm trying to implement logic on a custom field and the thing that I want to achieve is to have a different name than the value of the custom field
for example, we have a dropdown list and the first option is ( Option 1 ) for option one I want to set the value to 1 not option 1 but still show (Option 1 ) to the user
Thanks in advance
A dashboard in JIRA might be able to display information in a gadget, but these tend to not be very interactive in regards to clicking them in order to change the information displayed.
However I think that you could instead create a new board (not a dashboard, but a board) in JIRA Software/ JIRA Agile to achieve this functionality. In order to create a board in JIRA, you need to first create a saved filter that displays all the issues you want to see, perhaps something like
project=XYZ and ProductNumber is not empty
This would return all the issues in XYZ project that have some value for the productnumber field.
From there, you can create a new board based on that filter. Boards -> View All Boards, on the top right corner, click the Create Board, then select a board type, and choose the based on JQL filter to the filter of these issues.
From that point you can then use the steps in Configuring Quick Filters in order to create sub queries to this filter that only show specific issues. For example, you can make a quick filter that is just
assignee = currentUser()
And when you click that quick filter on that board, it would reduce the issues to just the issues assigned to the currently logged in user in JIRA.
You can also create a quick filter that is just
ProductNumber=P00302
And again, when you click this it only shows issues that have that value in the custom field. With the quick fitlers you can stack/toggle their use here. So you could click both and see only your assigned issues with that specific productnumber value.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.