vote up 0 vote down star

I have a for each which loops round news item nodes. Among other properties these news items have two attributes for created date. System added date and a user entered created date (to override the system date). I would like the list sorted by created date with the preference on the user entered date.

Below is my humble invalid attempt!

<xsl:for-each select="$currentPage/ancestor-or-self::node /node [@nodeTypeAlias = $documentTypeAlias and string(data [@alias='umbracoNaviHide']) != '1']">

<xsl:choose>
 <xsl:when test="data [@alias = 'createdDate'] != ''">
  <xsl:variable name="sort" select="string(data [@alias = 'createdDate'])"/>
 </xsl:when>
 <xsl:otherwise>
  <xsl:variable name="sort" select="string(@createDate)"/>
 </xsl:otherwise>
</xsl:choose>

<xsl:sort select="$sort" order="descending"/>

Many thanks

flag
umbraco ftw. I've had plenty of dramas doing conditional sorts in xslt. – DaRKoN_ Nov 9 at 9:02

3 Answers

vote up 2 vote down check
<xsl:sort select="(data[@alias='createdDate' and normalize-space() != '']|@createDate)[last()]" order="descending" />

This statement creates a nodeset with the two nodes containing date, and get the last one according the document order to do the sorting. If data node exists and is not empty, it will be used for the sorting because child elements of an element occur after its attribute nodes.

concat() can only work, and in a few cases, if you use text sorting; it will fail with numeric sorting.

link|flag
I thought this worked but on closer inspection it doesn't quite. If the data node with an alias of createdDate is present it does use it however if it is not present the @createDate is not used instead. Any ideas on this? Seems more robust that using concat so I would like to persevere. – Max Nov 11 at 23:27
bit more information. I think the data node does exist but it is empty. In that case I would like to use @createDate. – Max Nov 12 at 21:41
OK, you just didn't expose everything. ;) If empty data nodes must not be elected for sorting, predicate must be modified therefore. I edited my answer. – Erlock Nov 13 at 9:20
that's brilliant! – Max Nov 23 at 17:06
vote up 0 vote down

Right, seems like a hack but I have been able to achieve this by using a concat with the sort.

Example below

<xsl:for-each select="$currentPage/ancestor-or-self::node /node [@nodeTypeAlias = $documentTypeAlias and string(data [@alias='umbracoNaviHide']) != '1']">
<xsl:sort select="concat(data [@alias = 'createdDate'],@createDate)" order="descending"/>
link|flag
vote up 0 vote down

To test if a node is empty (or omitted) in XSLT:

<xsl:when test="not(string(name))">...</xsl:when>
<!-- or -->
<xsl:when test="not(name)">...</xsl:when>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.