次のように、ソース XML の属性に基づいて apply-templates モードを動的に変更したいと考えています。
<xsl:choose>
<xsl:when test="@myAttribute">
<xsl:apply-templates select="." mode="@myAttribute"/>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates select="." mode="someOtherMode"/>
</xsl:otherwise>
</xsl:choose>
mode 属性で XPath を評価することは可能ですか? 他のアプローチはありますか?
ありがとう!