1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
| <h:form>
<rich:dataTable value="#{dateBean.observation}" var="ressource" rows="5" width="100%" rendered="true"
rowClasses="even-row,odd-row" id="table">
<rich:column >
<f:facet name="header">
<h:outputText value="tache" />
</f:facet>
<h:outputText value="#{ressource.idTache}"
</rich:column>
<rich:column>
<f:facet name="header">
<h:outputText value=" Nom" />
</f:facet>
<h:outputText value="#{ressource.idRessource}" />
</rich:column>
</rich:dataTable>
<button type="button" id="cancelbutton" onclick="#{rich:component('panel')}.hide()">Cancel</button>
</h:form> |
Partager