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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
<html>
<head><title>Pagination Prospect</title></head>
<body>
<core:view>
<html:form>
<center>
<html:outputText style="color:red" value="Liste Des Prospects"/>
<br><br>
<html:outputText value="Numéro de page :" /><html:inputText id="valid" value="#{pkb.gonumpage}"><core:validator validatorId="validation"/></html:inputText><html:commandButton action="#{pkb.Cliquenumpage}" value="valider"/>
<html:message for="valid" style="color:red"/>
<html:dataTable value="#{pkd.listprospect}" var="prospect" cellspacing="4" width="60%" rowClasses="paire,impaire" headerClass="titre">
<html:column>
<core:facet name="header">
<html:commandLink action="#{pkb.Cliquecontrainte}"><core:param name="contraintes" value="sysid"/><html:outputText value="Sysid :"/></html:commandLink>
</core:facet>
<html:commandLink action="#{pkb.Popup}"><html:outputLink onclick="document.getElementById('windowContainer').style.display='block';"><core:param name="sysidsauv" value="#{prospect.sysid}"/><html:outputText value="#{prospect.sysid}"/></html:outputLink></html:commandLink>
</html:column>
</html:dataTable>
<core:view>
<html:form>
<center>
<div id="windowContainer" unselectable=on style="display='none'">
<div id="windowContainerBorder1"></div>
<div onSelect="return false" id="windowTitle"></div>
<div id="controlBox"></div>
<div id="contentArea">
<html:outputText value="Information de la personne"/>
<html:dataTable value="#{pkd.Listinfo}" var="info">
<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}"/>
</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>
</div>
<div id="resizeCapture"></div>
</div>
</center>
</html:form>
</core:view> |