This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: using mode-values within a template


Stefan asked:

does anybody know whether there is a possibility to get the value of a
mode?? I want to use the mode-value within the template it belongs to.

Hello Stefan,

I don't know of any way to do this except by hard-coding the mode name into
the templates as a variable eg
<xsl:template match="foo" mode="bar">
	<xsl:variable name="mode" select="'bar'"/>

It might seem a bit of a pain to do this for every template that specifies a
node, but you could easily use XSLT to do it for you.

Cheers,
Tom Weissmann

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]