The Project Settings Page allows project-specific customization of grid views.
Steps to Configure:
Select a Grid Type:
Choose from Sub-task, Epic, Linked Issues, JQL, or Plan.
Enable Grid:
Toggle the checkbox to enable the grid.
Provide a Grid Name:
Enter a meaningful name for the grid.
Configuration Scope:
Select the relevant projects where the grid will be applied.
Specify JQL:
Define a JQL query to filter issues dynamically (if applicable).
Select Fields to Render:
Choose fields to be displayed in the grid from the dropdown.
...
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!
Save Changes:
Once all configurations are set, click Save to apply the grid.
...