How to add an empty element to the JSF panel?
This is my complete table:
<h:panelGrid columns="2"> <h:outputLabel value="row1"/> <h:outputLabel value="row2"/> <h:outputLabel value="row1"/> <h:outputLabel value="row2"/> <h:outputLabel value="row1"/> <h:outputLabel value="row2"/> </h:panelGrid>
How to add an empty element? What is the recommended way? (adding an empty output label? That doesn't seem right.)
<h:panelGrid columns="2"> <h:outputLabel value="row1"/> <h:outputLabel value="row2"/> <h:outputLabel value="row2"/> <h:outputLabel value="row1"/> <h:outputLabel value="row2"/> </h:panelGrid>
jsf datagrid element components
Dimitri dewaele
source share