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]

RE: To what extent can sorting be done?


Hi Kevin,

> ... do I
> have to write code for each column I want sorted, or does XSL allow this
> itself? I haven't touched on sorting yet in XSL, but someone told me that
> supposedly I can get XSL to take the same XML input and sort it by various
> columns (assuming lets say a 2D table of rows/columns). Would I need a
> different XSL for each column, or can I just use  some <xsl:choose..> tags
> to sort the data in a particular column and still use the one XSL. Any
> examples (that don't require lots of your time) would be great either in
> XSL, or how it is possible.

You can use something like the following in your table-generating XSLT code:

<xsl:sort select="*[name()= $columnName]"/>


DImitre Novatchev.

__________________________________________________
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail - only $35 
a year!  http://personal.mail.yahoo.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]