<netui:attribute> Tag
Adds an attribute to the parent tag rendered in the browser.
<netui:attribute
[facet="facet"]
name="name"
value="value" />
Adds an attribute to the parent tag rendered in the browser.
The following <netui:attribute> tags are rendered within the <span> tag (since
the <netui:label> tag is rendered as a <span> tag in the browser.
<netui:label value="Some Text">
<netui:attribute name="a" value="aVal" />
<netui:attribute name="b" value="bVal" />
<netui:attribute name="c" value="cVal" />
</netui:label>
The HTML rendered in the browser appears as follows.
<span a="aVal" b="bVal" c="cVal">Some Text</span>
Note that the value
attribute can be dynamically determined using a databinding expression.
<netui:attribute name="a" value="{pageFlow.aAttributeValue}" />
Attributes |
facet |
Required: No | Supports
runtime evaluation: Yes | Data bindable: |
|
|
name |
Required: Yes | Supports
runtime evaluation: Yes | Data bindable: No |
|
The name of the attribute to add to the parent tag. |
value |
Required: Yes | Supports
runtime evaluation: Yes | Data bindable: Yes |
|
The value of the attribute to add to the parent tag. |