Mercurial > dive4elements > gnv-client
comparison gnv/src/main/webapp/WEB-INF/config/templates/describe-ui.xsl @ 149:9b7f74e58f8d
Changed Lablevalues according to issue47
gnv/trunk@237 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Tim Englich <tim.englich@intevation.de> |
---|---|
date | Mon, 19 Oct 2009 09:10:15 +0000 |
parents | 6c46f9b16166 |
children | 330871ca1fd3 |
comparison
equal
deleted
inserted
replaced
148:42925758e384 | 149:9b7f74e58f8d |
---|---|
26 <option value="{$optionValue}"><xsl:value-of select="*[local-name() = 'label']"></xsl:value-of></option> | 26 <option value="{$optionValue}"><xsl:value-of select="*[local-name() = 'label']"></xsl:value-of></option> |
27 </xsl:otherwise> | 27 </xsl:otherwise> |
28 </xsl:choose> | 28 </xsl:choose> |
29 </xsl:template> | 29 </xsl:template> |
30 | 30 |
31 <xsl:template match="*[local-name() = 'group']"> | |
32 <xsl:variable name="selectName" select="@ref"/> | |
33 <legend><xsl:value-of select="*[local-name() = 'label']"/></legend> | |
34 <xsl:apply-templates/> | |
35 </xsl:template> | |
31 | 36 |
32 <xsl:template match="*[local-name() = 'input']"> | 37 <xsl:template match="*[local-name() = 'input']"> |
33 <xsl:variable name="inputValue" select="*[local-name() = 'value']"/> | 38 <xsl:variable name="inputValue" select="*[local-name() = 'value']"/> |
34 <xsl:variable name="inputName" select="@ref"/> | 39 <xsl:variable name="inputName" select="@ref"/> |
35 <xsl:value-of select="*[local-name() = 'label']"/>: <input type="text" id="{$inputName}" name="{$inputName}" value="{$inputValue}" /><br/> | 40 <xsl:value-of select="*[local-name() = 'label']"/>: <input type="text" id="{$inputName}" name="{$inputName}" value="{$inputValue}" /><br/> |