Mercurial > hg > ismi-richfaces
comparison src/main/webapp/public/dynamicPage.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 | |
9 <body> | |
10 <ui:composition template="/templates/publicTemplate.xhtml"> | |
11 <ui:define name="title">ISMI - simple search</ui:define> | |
12 | |
13 <ui:define name="publicContent"> | |
14 | |
15 <h:outputStylesheet name="/css/ismi-db/display.css" /> | |
16 <div id="simpleSearch"> | |
17 <div id="pageTitle"> | |
18 <h:outputText value="#{Session.dynamicPage.page.label}" /> | |
19 </div> | |
20 </div> | |
21 | |
22 <div class="dynamicAttTable"> | |
23 | |
24 | |
25 <rich:dataTable | |
26 value="#{Session.dynamicPage.labels}" | |
27 var="attLabel"> | |
28 | |
29 <rich:column> | |
30 <h:outputText | |
31 value="#{attLabel}"/> | |
32 </rich:column> | |
33 | |
34 <rich:column> | |
35 <rich:dataTable | |
36 value="#{Session.dynamicPage.attMap[attLabel]}" | |
37 var="value"> | |
38 <rich:column style="text-align:#{Session.dynamicPage.attMapTextAlign[attLabel]};"> | |
39 <h:outputText | |
40 value="#{value}"/> | |
41 </rich:column> | |
42 </rich:dataTable> | |
43 </rich:column> | |
44 | |
45 </rich:dataTable> | |
46 | |
47 | |
48 | |
49 | |
50 </div> | |
51 | |
52 | |
53 </ui:define> | |
54 </ui:composition> | |
55 </body> | |
56 </html> |