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
|
<rich:dataTable onRowMouseOver="this.style.backgroundColor='#F1F1F1'"
onRowMouseOut="this.style.backgroundColor='#{a4jSkin.tableBackgroundColor}'"
cellpadding="0" cellspacing="0" width="400" border="0" value="#{usersDataTableBean.users}" var="user">
<rich:column>
<f:facet name="header">
<h:outputText styleClass="headerText" value="Temps restant" />
</f:facet>
<h:outputText id="timeOutput" value="#{user.usersDatas.remainTime}" />
<f:facet name="footer">
<h:outputText id="totalTimeOutput" value="#{usersDataTableBean.totalTime}" />
</f:facet>
</rich:column>
<rich:column>
<f:facet name="header">
<h:outputText styleClass="headerText" value="Gestion du temps" />
</f:facet>
<h:inputText id="timeInput" value="#{usersDataTableBean.handleTime}"
label="Time" />
<a4j:commandLink id="timeLink"
action="#{usersDataTableBean.updateUser}" value="modifier"
reRender="timeOutput, totalTimeOutput" />
</rich:column>
</rich:dataTable> |
Partager