tao-test/app/taoItems/views/xsl/textfield.xsl

31 lines
865 B
XML
Raw Normal View History

2022-08-29 20:14:13 +02:00
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet
version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:output
method="xml"
version="1.0"
encoding="utf-8"
indent="yes"
omit-xml-declaration="yes" />
<!-- textfield -->
<xsl:template
match="item"
mode="textfield">
<textarea>
<xsl:attribute name="name">
<xsl:apply-templates select="." mode="getId" />
</xsl:attribute>
<xsl:attribute name="id">
<xsl:apply-templates select="." mode="getId" />
</xsl:attribute>
<!--<xsl:attribute name="class">-->
<!--<xsl:text>variableTextField</xsl:text>-->
<!--</xsl:attribute>-->
<!--<xsl:value-of select="ancestor::item/@id" />-->
</textarea>
</xsl:template>
</xsl:stylesheet>