Re: [xsl] tableheader sort on date with DOM dynamically and optimisation xslt/xml code

Subject: Re: [xsl] tableheader sort on date with DOM dynamically and optimisation xslt/xml code
From: "Carsten Klein" <carstenklein@xxxxxxxx>
Date: Sat, 6 Apr 2002 20:03:48 +0200
Hi Hans,

well, i don't take the roses...

First of all you should enclose code inside your script elements in
your stylesheet inside
a CDATA section

<script><![CDATA[
...your script
]]>
</script>

have a look at http://www.w3.org/TR/2001/WD-xslt11-20010824/
for a detailed description of cdata sections.

A dynamic sort based on the date is easy to implement, once you have
figured out how to pass dates to a stylesheet

Take this code snippet to provide you with a transformation function
(in javascript, i'm sorry) with arbitrary parameters passed to a
stylesheet

You will need to modify your stylesheet accordingly.

E.g.

<xml ...>
<xsl:stylesheet ...>
    <xsl:param name="sortByDate"/>
...

You may find more information in (including example code)
my message of march the 23rd

http://www.biglist.com/lists/xsl-list/archives/200203/msg01009.html

Bye
Carsten


_________________________________________________________
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


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


Current Thread