Admin Page Configuration
The Admin Page is the central hub for managing all grid configurations.
Sections:
Grid Name: The name assigned to the grid for identification.
Grid Type: Represents the type of grid, such as Sub-task, Epic, Linked Issues, JQL, or Plan.
Issues: Indicates the issue types linked to the grid.
Projects: Specifies the projects where the grid will be displayed.
Fields: Lists the selected fields that will be shown in the grid.
Active: Toggles whether the grid is enabled or disabled.
Actions: Options to edit, duplicate, or delete the grid configuration.
How to Use:
Navigate to the Grid View Configuration Admin Page.
Use the Add Grid button to create a new grid.
Edit, duplicate, or delete existing grids using the actions column.
Dynamic Field Variables:
Dynamic placeholders can be inserted into the JQL query. Refer to the provided knowledge base article for supported placeholders.
Dynamic variables in JQL must be enclosed in quotes (single ' or double "). This ensures Jira treats them as string values.
Correct Format
Single Quotes:
assignee in ('${issue.customfield_10070}')Double Quotes:
assignee in ("${issue.customfield_10070}")
Both are valid.
Incorrect Format
Without quotes:
assignee in (${issue.customfield_10070})
This will fail because Jira can't parse the string properly.
Tip: Always use quotes for string-based dynamic variables!