I try to modulise a complex Create dialog in Jira Software
the create dialog has 4 tabs
i want to initial hide 3 tabs and then show it when an checkbox is selected
checkbox 1 selected show tab 1
checkbox 1 and 2 selected show tab 1 and 2
and so on
any suggestions?
You can do it like so:
def issueMgr = ComponentAccessor.getIssueManager()
def issues = issueMgr.getIssueObjects(issueMgr.getIssueIdsForProject(projectId))
This will return an Array List of all issues in a project with the given 'projectId'
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.