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: j2sdk1.4.0 xslt and setParameter


Hi Dominic,

> I have been using jdk1.3.1 just fine with the following
>
>         trans.setParameter("AccountAutoCatalog",
> "header.accountAutoCatalog");
>
> and a matching
>
>         <xsl:variable name="AccountAutoCatalog" select="default"/>

This xsl:variable element is defining a (global, I assume) *variable*.
It looks like you want to define a stylesheet parameter:

  <xsl:param name="AccountAutoCatalog" select="'default'" />

Note also the quotes around the (string) value in the select
attribute. Without the single quotes there, it's interpreted as
meaning "the 'default' element child of the root node".

Cheers,

Jeni

---
Jeni Tennison
http://www.jenitennison.com/


 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]