Mercurial > hg > ismi-richfaces
view src/main/webapp/public/dynamicPage.xhtml @ 176:c63d39034b60
PublicByAuthor feature with new "Select by public and MAMS" text-UI.
author | Robert Casties <casties@mpiwg-berlin.mpg.de> |
---|---|
date | Fri, 08 Jun 2018 15:32:27 +0200 |
parents | 764f47286679 |
children |
line wrap: on
line source
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j" xmlns:rich="http://richfaces.org/rich"> <body> <ui:composition template="/templates/publicTemplate.xhtml"> <ui:define name="title">ISMI - simple search</ui:define> <ui:define name="publicContent"> <h:outputStylesheet name="/css/ismi-db/display.css" /> <div id="simpleSearch"> <div id="pageTitle"> <h:outputText value="#{Session.dynamicPage.page.label}" /> </div> </div> <div class="dynamicAttTable"> <rich:dataTable value="#{Session.dynamicPage.labels}" var="attLabel"> <rich:column> <h:outputText value="#{attLabel}"/> </rich:column> <rich:column> <rich:dataTable value="#{Session.dynamicPage.attMap[attLabel]}" var="value"> <rich:column style="text-align:#{Session.dynamicPage.attMapTextAlign[attLabel]};"> <h:outputText value="#{value}"/> </rich:column> </rich:dataTable> </rich:column> </rich:dataTable> </div> </ui:define> </ui:composition> </body> </html>