Mercurial > hg > ismi-richfaces
comparison src/main/webapp/entry/components/dateEditorPopup.xhtml @ 7:764f47286679
(none)
author | jurzua |
---|---|
date | Wed, 29 Oct 2014 14:28:34 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
6:ded3bccf2cf9 | 7:764f47286679 |
---|---|
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
2 <html xmlns="http://www.w3.org/1999/xhtml" | |
3 xmlns:h="http://java.sun.com/jsf/html" | |
4 xmlns:f="http://java.sun.com/jsf/core" | |
5 xmlns:ui="http://java.sun.com/jsf/facelets" | |
6 xmlns:a4j="http://richfaces.org/a4j" | |
7 xmlns:rich="http://richfaces.org/rich" | |
8 xmlns:ismi="http://java.sun.com/jsf/composite/components/ismi"> | |
9 <body> | |
10 <ui:composition> | |
11 | |
12 <h:panelGrid id="currentCalendarPP"> | |
13 <h:panelGroup rendered="#{Session.currentCalendar != null}"> | |
14 | |
15 <div style="z-index: 100;" class="rf-pp-shade"> | |
16 <button class="rf-pp-btn" tabindex="-1" accesskey="" /> | |
17 </div> | |
18 | |
19 <h:panelGrid columns="1" styleClass="ismi-pp-cntr" | |
20 style="margin-top: -200px; width: 450px; margin-left: -225px"> | |
21 | |
22 <div class="ismi-pp-hdr"> | |
23 <div class="ismi-pp-hdr-cnt">Login</div> | |
24 </div> | |
25 | |
26 <h:panelGrid columns="1" styleClass="ismi-pp-main-panel"> | |
27 | |
28 <ismi:date date="#{Session.currentCalendar}" /> | |
29 | |
30 <a4j:commandButton value="OK" | |
31 actionListener="#{Session.listenerSaveEditionCalendar}" | |
32 render="currentCalendarPP" /> | |
33 | |
34 </h:panelGrid> | |
35 </h:panelGrid> | |
36 </h:panelGroup> | |
37 </h:panelGrid> | |
38 | |
39 | |
40 </ui:composition> | |
41 </body> | |
42 </html> |