I have a table in primefaces to which I already add some columns, Now what I want is to add rows, and I have the following but it only shows text in the columns and it does not show what I have in the outputLabel, or in what way is it done?
<p:dataTable style="max-width:1900px;max-height:750px;">
<p:column headerText="RFC" >
<p:outputLabel value="RUMS907856"/>
</p:column>
<p:column headerText="NOMBRE">
<p:outputLabel value="JUAN"/>
</p:column>
<p:column headerText="CLAVE">
<p:outputLabel value="123"/>
</p:column>
<p:column headerText="1" ></p:column>
<p:column headerText="2">
</p:column>
<p:column headerText="3">
</p:column>
</p:dataTable>