|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: Newbie question on XSL transformations: multiple
Rob Newman wrote:
Hi there, don't, we all have taken our first steps and found walls too steep to climb and pavements so deceptively flat that we slipped. It is always good to ask for help, especially when done so clearly ;-)
This is very strange, as it cannot possibly run, you have a syntax error in your select clause (if you did manage to get it running, can you follow-up with the processor you are using?). The following is in error: <xsl:sort select="param/@id{dlt}" data-type="number" order="descending" /> Change it to: <xsl:sort select="param[@id = 'dlt']" /> and all elements with @id = 'dlt' (i.e., attribute nodes containing the exact match to the text 'dlt') will be output firstly.
and you are right, you won't need to. Cheers, -- Abel Braaksma http://www.nuntia.nl
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|






