Mercurial > hg > ismi-richfaces
view src/main/webapp/resources/components/ismi/fieldSet.xhtml @ 88:8d93f3a0108f
More work on entering references.
author | casties |
---|---|
date | Thu, 06 Oct 2016 19:03:56 +0200 |
parents | 764f47286679 |
children |
line wrap: on
line source
<?xml version="1.0" encoding="utf-8"?> <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:composite="http://java.sun.com/jsf/composite"> <composite:interface> <composite:attribute name="label" /> <composite:attribute name="value" required="true" /> <composite:attribute name="required" default="false" /> </composite:interface> <composite:implementation> <h:outputLabel for="input" value="#{cc.attrs.label}" style="float:left;" /> <h:inputText id="input" value="#{cc.attrs.value}" style="float:left;" required="#{cc.attrs.required}" /> <h:message for="input" id="msg" /> </composite:implementation> </html>