Text Values

Many Facelets use a text source as input e.g. the Text Facelet

Variables

The text string can use the output of a provider as a variable, using letter '$A' for the first provider in the provider value list, '$B' for the second one and so on:

Variable Description

$A

Output of the first Provider (A)

$B

Output of the second Provider (B)

$C

Output of the third Provider ©

$D

Output of the fourth Provider (D)

$X

Output of the numeric eXpression using the format string


Examples

  • Empty text value
    An empty text value returns the value of the expression like '$X'.
    If no expression is set, it returns a concatenated list of the providers like '$A, $B, $C'.

  • Plain text

    This is a Test

    gives: "This is a Text"

  • Provider output

    $A

    gives: "34" or "Test"

  • Provider output with text

    Data: $A

    gives: "Data: 34" or "Data: Test"

    High: $A, Low: $B

    gives: "High: 87.6, Low: 76.3"