This tag determines whether some HTML content is visible or not.
<netui-template:visible
[negate="boolean_negate"]
[visibility="boolean_expression_visible"]
[visible=""] />
The <netui-template:visible> tag can wrap any HTML content within a content page. If visibility is turned on, then the content will fill its target placeholder in the template file. If visibility is turned off, then the content will not fill its target placeholder.
Visibility can be determined through either the visible
attribute
(which
takes a boolean literal) or the visibility
attribute (which takes a
data binding expression that
resolves to a boolean).
<netui-template:section name="leftCol"> <netui-template:visible visiblity="{pageFlow.leftColVisible}"> <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.</p> </netui-template:visible> </netui-template:section>
<netui-template:...> Tags Sample
<netui-template:attribute> Tag
<netui-template:includeSection> Tag