xsl sort select works for descending but not ascending???
I am trying to sort a list in alphabetical order. For some strange reason, the list will sort in descending order and not ascending (at first, I thought I must have misspelled ascending, but I have tried several times now.) It works perfectly fine descending (going from z-a) but not ascending (a-z) Is this a glitch in Umbraco?
xsl sort select works for descending but not ascending???
I am trying to sort a list in alphabetical order. For some strange reason, the list will sort in descending order and not ascending (at first, I thought I must have misspelled ascending, but I have tried several times now.) It works perfectly fine descending (going from z-a) but not ascending (a-z) Is this a glitch in Umbraco?
<xsl:for-each select="umbraco.library:GetXmlNodeById('1096')/* [@isDoc and string(umbracoNaviHide) != '1']">
<xsl:sort select="@nodeName" order="descending" data-type="text" />
Hi MMM
Hmm, that's odd...what happens if you omit the data-type="text" attribute?
/Jan
is working on a reply...