Rule/Guideline
|
Example
|
---|---|
Data binding can be included inline as part of the content of an HTML element.
|
Current date is {{$F.TODAY()}}
|
Only the following HTML elements support inline data binding:
B, I, P, U
H1 to H6
EM, LI, OL, UL
DIV, PRE, SUB, SUP
SPAN, STRIKE, STYLE (for Header and Footer).
|
|
You can cascade the supported elements / have more than one data binding in an inline data binding expression.
|
Current date is <b>{{$F.TODAY()}}. User: {{$F.USERNAME()}}.
|