[PrimeFaces] Pas d'affichage
Bonjour à tous!
Ayant changer toutes mes versions pour des plus récentes(eclipse primefaces glassfish) je ne parviens plus à afficher correctement mes pages
je suis actuellement sous eclipse Luna, glassfish 4.1
Primefaces 5.1 (jar qui est bien dans mon web-inf/lib)
Résultat pour cette page basique -> Seul le bouton et les titres s'affichent mais pas les balises p
Code:
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
| <?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="fr"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:p="http://primefaces.org/ui"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:c="http://java.sun.com/jsp/jstl/core">
<head>
<title>Insert title here</title>
</head>
<body>
<button type="button">Click Me!</button>
<form>
<h1 id= "tit" class="title ui-widget-header ui-corner-all">ACCUEIL SIGNALEMENTS</h1>
<p:button outcome="productDetail" value="Bookmark" icon="ui-icon-star">
<f:param name="productId" value="10" />
</p:button>
<p:button outcome="productDetail" value="With Icon" icon="ui-icon-star">
<f:param name="productId" value="20" />
</p:button>
<p:button outcome="productDetail" icon="ui-icon-star" title="Icon Only">
<f:param name="productId" value="30" />
</p:button>
<p:button outcome="productDetail" value="Bookmark" icon="ui-icon-star" disabled="true">
<f:param name="productId" value="40" />
</p:button>
</form>
</body>
</html> |
J'ai retourné le problème dans tous les sens mais dans l'immédiat je sèche et vous remercie d'avance pour quelques probables pistes....