I have a simple function that I want to pass the value of a node to.

   <xsl:function name="f:getdatetimetype" as="xs:string">
   <xsl:param name="code" as="xs:int"/>
   <xsl:choose>
      <xsl:when test="$code = 137">
          <xsl:text>DocumentMessageDateTime</xsl:text>
      </xsl:when>
      <xsl:otherwise>
         <xsl:text>Unspecified</xsl:text>
      </xsl:otherwise>
  </xsl:choose>
</xsl:function>

How do I do that?

I don't suppose I can do like this:

<xsl:value-of select="f:getdatetimetype(<xsl:value-of select="DTM01/DTM0101"/>)"/>

Thanks for any help!

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

You should go with

<xsl:value-of select="f:getdatetimetype(DTM01/DTM0101)"/>
link|improve this answer
Thanks, I solved it similarly in the mean time! :-) – Fedor Steeman Feb 3 '10 at 13:42
feedback

Solved it myself:

<xsl:value-of select="f:getdatetimetype(DTM01/DTM0101/text())"/>

Sheesh, how simple!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.