Invalid license: Your Refined is only licensed for 10 users.

Versions Compared

Key

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

...

In the example above, we're outputting the values for GL code (customfield_1) and URL link (customfield_3)


Showing values from Jira standard and custom fields

You can also render the value of any Jira standard or custom field from the current ticket. Here's the example how to show summary of the ticket:

Code Block
linenumberstrue
<div th:text="${jiraFieldHeaders['summary']} + ' ' + ${jiraFieldValues['summary']}" style="width: 100%; height: 40px; border: solid 1px gray;"></div>


And this is how you can show a custom field - both, name and the value:

Code Block
linenumberstrue
<div th:text="${jiraFieldHeaders['customfield_10057']} + ' ' + ${jiraFieldValues['customfield_10057']}" style="width: 100%; height: 40px; border: solid 1px gray;"></div>