Rule/Guidelines
|
Example
|
---|---|
Data binding can be included inline as part of the content of an HTML element.
|
<p>Current date is {{$F.TODAY
()}}</p>
|
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.
|
<p>Current date is <b>
{{$F.TODAY()}}.</b> User: <i>
{{$F.USERNAME()}}.</i></p>
|