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 32
|
<html:dataTable value="#{pkd.listinfo}" var="info" rendered="#{pkb.affinfo}" cellspacing="4" width="60%" rowClasses="paire,impaire" headerClass="titre">
<html:column>
<core:facet name="header">
<html:outputText value="Sysid :"/>
</core:facet>
<html:outputText value="#{info.sysid}"/>
</html:column>
<html:column>
<core:facet name="header">
<html:outputText value="Nom :"/>
</core:facet>
<html:inputText value="#{info.nom}"/>
<core:param name="toto" value="#{info.nom}"/>
</html:column>
<html:column>
<core:facet name="header">
<html:outputText value="Prenom :"/>
</core:facet>
<html:inputText value="#{info.prenom}"/>
</html:column>
<html:column>
<core:facet name="header">
<html:outputText value="Raison sociale :"/>
</core:facet>
<html:inputText value="#{info.raisonsocial}"/>
</html:column>
</html:dataTable>
<html:commandLink action="#{pkd.Update}"><html:outputText value="Valider"/></html:commandLink> |
Partager