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
|
<!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<f:view xmlns="http://www.w3.org/1999/xhtml"
xmlns:s="http://jboss.com/products/seam/taglib"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:ice="http://www.icesoft.com/icefaces/component"
xmlns:c="http://java.sun.com/jstl/core"
template="layout/template.xhtml">
<ice:panelPopup visible="#{maPopup.visible}" style="position: absolute; top:250px; left:400px; width:750px;" draggable="true">
<f:facet name="header" >
<ice:panelGrid cellpadding="0" cellspacing="0" columns="2" style="text-align: center;" >
<ice:outputText style="color: #FFFFFF;" value="Les couleurs"/>
</ice:panelGrid>
</f:facet>
<f:facet name="body">
<ice:panelGroup>
</ice:panelGroup>
</f:facet>
</ice:panelPopup>
</f:view> |