Like div/span in HTML, I'd like to know if there has similar tags in JSF. It should be meaningless in HTML display, but only for organizing document composition.
For example:
<h:abstractGroup id="a" rendered="false">
...
</h:abstractGroup>
Like div/span in HTML, I'd like to know if there has similar tags in JSF. It should be meaningless in HTML display, but only for organizing document composition.
For example:
<h:abstractGroup id="a" rendered="false">
...
</h:abstractGroup>
The rendering of a group of child components can be controlled with the facelet tag <ui:fragment>
.
See also Alternative to ui:fragment in JSF
h:panelGroup does exactly this, and it renders as div or span too, automatically detecting which is required.