Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

These queries allow to display icons of issue types, statuses and piorities

...

The formula construction is: IMG(TableName.ICONURL, width,height)

For example: IMG(it.ICONURL,16,16) where:

...

16,16 - width 16 px, height 16 px.

Panel
bgColor#DEEBFF
Let’s take a look into examples!

EXAMPLES

  • Add Issue type icon

Code Block
languagesql
select IMG(it.ICONURL,16,16) as `Type`, LINKISSUE(i.`KEY`)  as `Issue`
from ISSUE i
join ISSUETYPE it on it.ID=i.TYPEID
where JQL='project=PROJECTNAME'

...