hannonhill / exchange-resources

New repo for cleaned up Exchange Sites for Cascade CMS.
https://www.hannonhill.com/resources/exchange/index.html
6 stars 11 forks source link

Calendar - Improvement: Sort the calendars/categories listing on the main calendar homepage #4

Open megoconnor opened 4 years ago

megoconnor commented 4 years ago

Description

The categories that display on the main calendar homepage are based on what values are selected in the "Category" multi-select in the metadata of that page and are retrieved in a random order.

Screen_Shot_2020-06-12_at_4_51_10_PM

It would be nice if these were either sorted alphabetically or if there was some way to control the order of those categories.

Workaround

To sort the calendars alphabetically, in the _cms/formats/full-calendar Format, sort the $calendarCategories values (around Line 8):

#set ($calendarCategories = $_XPathTool.selectNodes($callingPage, "dynamic-metadata[name='categories']/value"))
#set ($calendarCategories = $_SortTool.sort($calendarCategories,"value"))
megoconnor commented 4 years ago

Ticket gz#12599