Versions Compared

Key

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

...

Setting

Description

Text Content

Used in the Rich Text field type. This is the text that is displayed to the user. (Rich Text is a read-only field.)

Text can be formatted with HTML tags to achieve font, color, graphic, and hyperlink effects.

Text Content supports double-bracketed interpolation: {{ expression }}


Code Block
languagexml
titleExample
<h2   style="color: rgb(51, 51, 51);">
Congratulations! You have successfully created a work item {{wizardState.$createdWorkItem.id}}
</h2>

 


Format

Used in the Display Value and Single Text field types. Originally used for currency formatting, this this setting is used to convert values based on the original value entered. 

Here are some basic currency options below.

For more supported formatting options, see this reference: http://numeraljs.com/#format


Original Value

Format

Result

1000.234

$0,0.00

$1,000.23

1000.2

0,0[.]00 $

1,000.20 $

1001

$ 0,0[.]00

$ 1,001

-1000.234

($0,0)

($1,000)

-1000.234

$0.00

-$1000.23

1230974

($ 0.00 a)

$ 1.23 m

 


Max Input Length

Used for the Single Text field type. Defines the maximum number of characters for the string. This validation is triggered, when the user tries to navigate to another page. If the user has entered a longer string, the following error message appears next to the field: “Max string length exceeded”.

...