Admin Page Configuration

Admin Page Configuration

The Admin Page is the central hub for managing all grid configurations.

 

 

admin1.png

 

admin2.png

 

admin3.png

 

admin4.png

 

Sections:

  1. Grid Name: The name assigned to the grid for identification.

  2. Grid Type: Represents the type of grid, such as Sub-task, Epic, Linked Issues, JQL, or Plan.

  3. Issues: Indicates the issue types linked to the grid.

  4. Projects: Specifies the projects where the grid will be displayed.

  5. Fields: Lists the selected fields that will be shown in the grid.

  6. Active: Toggles whether the grid is enabled or disabled.

  7. Actions: Options to edit, duplicate, or delete the grid configuration.

How to Use:

  1. Navigate to the Grid View Configuration Admin Page.

  2. Use the Add Grid button to create a new grid.

  3. 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

  1. Single Quotes:
    assignee in ('${issue.customfield_10070}')

  2. 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!