view src/main/webapp/resources/components/ismi/fieldSet.xhtml @ 143:1c09041f1182

110: The title-as-written-on-manuscript in the witness form does not save Task-Url: https://it-dev.mpiwg-berlin.mpg.de/tracs/ismi/ticket/110
author Robert Casties <casties@mpiwg-berlin.mpg.de>
date Fri, 23 Jun 2017 20:40:18 +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>