view src/main/webapp/resources/components/ismi/fieldSet.xhtml @ 7:764f47286679

(none)
author jurzua
date Wed, 29 Oct 2014 14:28:34 +0000
parents
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>