Versions Compared

Key

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


Page properties
hiddentrue


Tech review

Status
colourYellowGreen
titleReady for reviewdone

Style guide

Status
colourYellowGreen
titleReady for reviewdone

Page status

Status
colourGreen
titlecomplete

Status
titletodo
Status
colourYellow
titleReady for review
Status
colourGreen
titledone
Status
colourRed
titleflagged




UI Text Box
sizemedium
typeinfo

You can temporarily store values through functions. Stored values can easily be retrieved or referenced later in the same expression.

Functions used to retrieve (get) values previously stored (set) can directly be used in the same expression.

The values can only be used for the current expression and cannot be reused in another expression.


Example:

You want to emphasize the importance of blocking issues by returning AND coloring the number of linked blocking issues.

If more than 3 issues are linked as blocking issues the exact number will be returned in red otherwise in green.

To achieve this the conditional operator will be used.


Before using a variableAfter using a variable
count(linkedIssues("is blocked by")) > 3
"<font color=\"red\">" + count(linkedIssues("is blocked by"))  + "</font>"
: "<font color=\"green\">" + count(linkedIssues("is blocked by"))  + "</font>"

setNumber("x", count(linkedIssues("is blocked by")) > 3

? "<font color=\"red\">" + getNumber("x") + "</font>"

: "<font color=\"green\">" + getNumber("x") + "</font>"



UI Text Box
typetip

All these functions are extremely helpful if you have rather large or complex expressions.


Search
placeholderTextSearch through the available functions
cqllabel= temporarily_store_and_retrieve_values

Available functions

Page properties report
firstcolumnFunction
headingsShort description, Output, Label
sortByTitle
cqllabel = "temporarily_store_and_retrieve_values" and space = currentSpace()