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: xsl -> xslt - need advice




  For example what can I do
  to avoid this

  <img src="../images/open.gif" class="outline" style="cursor:hand;">
         <xsl:attribute name="id">
             <xsl:eval>outID()</xsl:eval>
        </xsl:attribute>

Normally people used xsl:eval in the old MicroSoft language (please
don't call it XSL, as that means something else, whatever the Microsoft
documentation might say) to get round the lack of functionality in the
language, so normally you can replace that by

 <img src="../images/open.gif" class="outline" style="cursor:hand;">
         <xsl:attribute name="id">
   .... some XSLT code to work out the attribute value ...
        </xsl:attribute>

but since you didn't say what outID did there is no more help we can
give. there is _no_ portable way to call javascript from XSLT as many
XSLT systems do not include a javascript interpreter.

David

_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.

 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]