Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

You can query the values from Jira objects such as issue, project, component, etc.

These values are used when the grid is instantiated for the specific issue or when the grid query is refreshed. The grid will not be refreshed when for instance the issue is assigned to a different user. More details on the refresh behavior is available on the Grid reload page.

Allows to get data from Jira objects like issue, project, component, etc.

You can use Jira values to populate the grid with data in different cases:

  • initialize grid with data 
  • set default values for gird columns
  • select lists with dynamic options 
  • use data from the other custom field 

Supported values

Basic Jira Values



Issue Level specific:

  • issue/parent:
    • id
    • key
    • summary
    • environment
    • estimate
    • logged
    • description
    • created_date
    • resolution_date
    • updated_date
    • due_date
    • votes
    • watches
    • security_level
    • status:
      • id
      • name (default)
      • description
      • sequence
    • status_category:
      • id
      • name (default)
      • key
      • sequence
    • resolution:
      • id
      • name (default)
      • description
      • sequence
    • priority:
      • id
      • name (default)
      • description
      • sequence
    • type:
      • id
      • name (default)
      • description
      • sequence
    • assignee:
      • id
      • key
      • name (default)
      • full_name
      • email
      • email_domain
    • reporter:
      • id
      • key
      • name (default)
      • full_name
      • email
      • email_domain
    • issue:components
      • id
      • name (default)
      • description
    • issue:fix_versions
      • id
      • name (default)
      • description
    • issue:affected_versions
      • id
      • name (default)
      • description
    • issue:labels
      • id
      • name (default)
    • issue:attachments
      • id
      • name (default)
      • file_size

Project Level specific

  • project: 
    • id
    • key
    • name
    • url
    • description
    • category
      • id
      • name (default)
      • description
    • lead:
      • id
      • key
      • name (default)
      • full_name
      • email
      • email_domain
    • components
      • id
      • name (default)
      • description
      • lead_name
    • versions
      • id
      • name (default)
      • description
      • is_archived
      • is_released
      • release_date
      • start_date

Current User Level specific:

  • current_user:
    • id
    • key
    • name (default)
    • ull_name
    • email
    • email_domain



Custom Field Values



Single Value types

  • Date (should be treated as dates in our date column types)
    • Date Picker
    • Date Time Picker
  • Numeric (should be treated as dates in our date column types)
    • Number Field
  • All other custom fields without a specific type should be handled the same way - get custom field value as a string

Multi-Value types

  • Checkboxes
  • Labels
  • Radio Buttons
  • Select List (cascading)
  • Select List (multiple choices)
  • Group Picker (multiple groups)
  • User Picker (multiple users)
  • Version Picker (multiple versions)




Custom Field Values placeholders

customfield:{id}

example : customfield:12345

This placeholder will take a Custom Field value for Single Value types, and merge values into one separated by a comma for Multi-Value types

customfield:{id}:{'all' or the index of the value(all - is default value)}:{'name' or 'value'(name - is default)}

example :

  • customfield:12345:all:value
  • customfield:12345:all:name - will be treated like simple customfield:12345 since 'all' and 'name' are defaults
  • customfield:12345:1:value
  • customfield:12345:1:name - might be simple customfield:12345:1 since 'name' is a default

Selecting 'all' will merge values into one separated by a comma

  • No labels