|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: Sorting revisited (<xsl:sort>)
Rob McArthur wrote: > <!-- the important part is as follows --> > <xsl:template match="/"> > <!-- snip --> > <xsl:apply-templates /> > <xsl:sort select="*[local-name()=string($sortby)]" > data-type="{$datatype}" order="{$orderby}" /> > <!-- snip --> > </xsl:template> This may not solve your problem, but the nodes being selected by the xsl:apply-templates are not being sorted with this code sample because <xsl:sort/> is outside of the <xsl:apply-templates/> instruction. See what happens when you do this: <xsl:apply-templates> <xsl:sort select="..." data-type="..." order="..." /> </xsl:apply-templates> -Mike XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
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
|






