Mercurial > dive4elements > gnv-client
comparison gnv/src/main/webapp/WEB-INF/config/templates/describe-ui.xsl @ 13:2535158e2687
Chartoutput Added to the View
gnv/trunk@95 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Tim Englich <tim.englich@intevation.de> |
---|---|
date | Wed, 16 Sep 2009 12:41:27 +0000 |
parents | 4ebe57b170d3 |
children | d7e5a929fc34 |
comparison
equal
deleted
inserted
replaced
12:4ebe57b170d3 | 13:2535158e2687 |
---|---|
8 | 8 |
9 <xsl:template match="*[local-name() = 'ui']"> | 9 <xsl:template match="*[local-name() = 'ui']"> |
10 <xsl:apply-templates/> | 10 <xsl:apply-templates/> |
11 </xsl:template> | 11 </xsl:template> |
12 <xsl:template match="*[local-name() = 'select']"> | 12 <xsl:template match="*[local-name() = 'select']"> |
13 <xsl:variable name="selectName" select="@ref"/> | |
14 <select name="{$selectName}" multiple="multiple" size="6"> <xsl:apply-templates/></select> | |
15 </xsl:template> | |
16 <xsl:template match="*[local-name() = 'select1']"> | |
13 <xsl:variable name="selectName" select="@ref"/> | 17 <xsl:variable name="selectName" select="@ref"/> |
14 <select name="{$selectName}"> <xsl:apply-templates/></select> | 18 <select name="{$selectName}"> <xsl:apply-templates/></select> |
15 </xsl:template> | 19 </xsl:template> |
16 <xsl:template match="*[local-name() = 'item']"> | 20 <xsl:template match="*[local-name() = 'item']"> |
17 <xsl:variable name="optionValue" select="*[local-name() = 'value']"/> | 21 <xsl:variable name="optionValue" select="*[local-name() = 'value']"/> |
25 <xsl:value-of select="*[local-name() = 'label']"/>: <input type="text" id="{$inputName}" name="{$inputName}" value="{$inputValue}" /><br/> | 29 <xsl:value-of select="*[local-name() = 'label']"/>: <input type="text" id="{$inputName}" name="{$inputName}" value="{$inputValue}" /><br/> |
26 </xsl:template> | 30 </xsl:template> |
27 | 31 |
28 <xsl:template match="*[local-name() = 'label']"> | 32 <xsl:template match="*[local-name() = 'label']"> |
29 </xsl:template> | 33 </xsl:template> |
30 | |
31 </xsl:stylesheet> | 34 </xsl:stylesheet> |