I have the following table
<p:dataTable id="consultaIncidencia" styleClass="columns" var="incidenciaDet" style="max-width:3000px;max-height:770px;" value="#{RegistroAccesoComponent.incidenciaAnioMesDet}">
<p:columnGroup type="header">
<p:row>
<p:column headerText="RFC" styleClass="columns" style="width:110px;height:50px" />
<p:column headerText="Nombre" styleClass="columns" style="width:110px;height:50px" />
<p:column headerText="Clave" styleClass="columns" style="width:110px;height:50px" />
<ui:repeat value="#{RegistroAccesoComponent.listDias}" var="dia">
<p:column headerText="#{dia}" />
</ui:repeat>
</p:row>
</p:columnGroup>
<p:column styleClass="columns">
<h:outputText />
</p:column>
<p:column styleClass="columns">
<h:outputText />
</p:column>
<p:column styleClass="columns">
<h:outputText />
</p:column>
<p:columns value="#{RegistroAccesoComponent.listDias}" var="dia" styleClass="columns">
<h:outputText />
</p:columns>
</p:dataTable>
and I have the following code, in which I send my inquiry
incidenciaAnioMesDet = anioMesDetService.findIncidenciaAnioMesDeByAnioMes(2018, 1, cvePersona);
for(IncidenciaAnioMesDet incidencia: incidenciaAnioMesDet)
System.out.println("PRUEBA" + " DIA-" +incidencia.getDia() + " INCIDENCIA-" + incidencia.getIncidencias().getCveIdIncidencia());
and throws the following in console:
PROOF DIA-3 INCIDENCIA-3
PROOF DAY-4 INCIDENCE-4,
PROOF DAY-5 INCIDENCE-5
PROOF DIA-2 INCIDENCE-15
PROOF DAY-1 INCIDENCE-1
Now what I want is that this incidence number show it in the day number that says but inside my table, but nothing appears to me
How can I show that info I want in the part
<p:columns value="#{RegistroAccesoComponent.listDias}" var="dia" styleClass="columns">
<h:outputText />
</p:columns>