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
|
<%@ taglib prefix="display" uri="http://displaytag.sf.net" %>
<form:form action="modifierReleve.html" method="POST" modelAttribute="releve">
<display:table uid="prestation" name="${totPrestaHeure}"
class="tableau"
decorator="org.displaytag.decorator.TotalTableDecorator">
<display:column title="Groupe" headerClass="" property="typePrestation.groupe.parent.label"
media="html"
group="1"/>
<display:column title="Heure" headerClass="" media="html" total="true" property="heure">
<form:hidden path="prestations[${prestation_rowNum -1}].id"/>
<form:hidden path="prestations[${prestation_rowNum -1}].jour"/>
<form:hidden path="prestations[${prestation_rowNum -1}].typePrestation"/>
<form:hidden path="prestations[${prestation_rowNum -1}].releve"/>
<form:input path="prestations[${prestation_rowNum -1}].heure"
cssStyle="width: 3em;"/>
</display:column>
</display:table> |