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
|
<%@page contentType="text/html"%>
<%@taglib uri="http://java.sun.com/jsf/html" prefix="html"%>
<%@taglib uri="http://java.sun.com/jsf/core" prefix="core"%>
<script type="texte/javascript" src="static/fonction.js"></script>
<link rel="stylesheet" href="static/style.css" type="text/css">
<script type="texte/javascript" src="static/style.css"></script>
<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>
<div id="windowContainer" unselectable=on style="display='none'">
<div id="windowContainerBorder1"></div>
<div onSelect="return false" id="windowTitle"></div>
<div id="controlBox"><img src="" width="52" height="15" border="0" usemap="#ctrlBox" /></div>
<div id="contentArea">
<h1><u>Sites de référence :</u></h1>
<html:outputText value="#{prospect.sysid}"/>
</div>
<div id="resizeCapture"></div>
</div>
</center>
</html:form>
</core:view>
</body>
</html> |
Partager