Mercurial > dive4elements > gnv-client
comparison gnv/src/main/webapp/WEB-INF/config/templates/describe-ui.xsl @ 152:330871ca1fd3
Added uniform Visualization of Single Input-Elements in GUI. issue55
gnv/trunk@246 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Tim Englich <tim.englich@intevation.de> |
---|---|
date | Mon, 19 Oct 2009 13:31:51 +0000 |
parents | 9b7f74e58f8d |
children | 3be414dc974a |
comparison
equal
deleted
inserted
replaced
151:30f0af26b086 | 152:330871ca1fd3 |
---|---|
35 </xsl:template> | 35 </xsl:template> |
36 | 36 |
37 <xsl:template match="*[local-name() = 'input']"> | 37 <xsl:template match="*[local-name() = 'input']"> |
38 <xsl:variable name="inputValue" select="*[local-name() = 'value']"/> | 38 <xsl:variable name="inputValue" select="*[local-name() = 'value']"/> |
39 <xsl:variable name="inputName" select="@ref"/> | 39 <xsl:variable name="inputName" select="@ref"/> |
40 <xsl:value-of select="*[local-name() = 'label']"/>: <input type="text" id="{$inputName}" name="{$inputName}" value="{$inputValue}" /><br/> | 40 |
41 <xsl:choose> | |
42 <xsl:when test="*[local-name() = 'label']!= ''"> | |
43 <xsl:value-of select="*[local-name() = 'label']"/>: | |
44 </xsl:when> | |
45 </xsl:choose> | |
46 <input type="text" id="{$inputName}" name="{$inputName}" value="{$inputValue}" /><br/> | |
41 </xsl:template> | 47 </xsl:template> |
42 | 48 |
43 <xsl:template match="*[local-name() = 'label']"> | 49 <xsl:template match="*[local-name() = 'label']"> |
44 </xsl:template> | 50 </xsl:template> |
45 </xsl:stylesheet> | 51 </xsl:stylesheet> |