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
|
.....
<rich:modalPanel id="modalConfirmationIdNumber" width="325"
height="125" keepVisualState="#{personneBean.showModalConfIdNumber}">
<f:facet name="header">
<h:panelGroup>
<h:graphicImage value="/skin/graphics/attach.png" id="imageAttach" />
<h:outputText value="#{msg.signalitiqueModalTitleIdentite}"
id="idTitleMessage"></h:outputText>
</h:panelGroup>
</f:facet>
<f:facet name="controls">
<h:panelGroup>
<a4j:commandButton image="/skin/graphics/close.png" title="Fermer"
oncomplete="Richfaces.hideModalPanel('modalConfirmationIdNumber')"
id="idCloseButton" />
</h:panelGroup>
</f:facet>
<a4j:outputPanel id="modalConfirmationIdNumberContent">
<h:outputText id="msgErrors2" value="#{personneBean.errorsMessages}"
escape="false" styleClass="txt_red_12px" />
<h:outputText id="outPutNumeroId" value="#{msg.numId}"
styleClass="link_blue_11px" />
<h:inputText id="txtNumIdConf" styleClass="textInputGradient"
value="#{personneBean.identity.numeroIdentiteConf}" />
<a4j:commandLink id="confirmationId"
actionListener="#{personneBean.onAddIdentity}"
reRender="modalConfirmationIdNumber, identite">
<h:graphicImage id="acceptImageId" url="/skin/graphics/accept.png"
style="border:none;" />
<h:outputText value="Valider" styleClass="link_green_11px" />
</a4j:commandLink>
</a4j:outputPanel>
</rich:modalPanel>
</a4j:outputPanel>
</html> |
Partager