Group cards in a deck by date
I have a custom object called "mobilizations" which are deployments to job sites. On a page with a calendar we display these as events. Our goal is to display a card for each event showing the information about each mobilization in rows beneath the calendar. We want a row for each day in the calendar included the view. This works for the day view but for the week all the card showing without a grouping or separation. The attached screenshot shows what we have this far. The question is how to group the displayed cards by calendar day?
Week View

Day View

Month View

Week View

Day View

Month View

Tagged:
1
Categories
- 7.9K Questions
- 926 Ideas
- 220 Discussion Categories
- 178 General
- 9 Community Feedback
- 3 Community Info
- 18 Knowledge Base
Comments
https://docs.skuid.com/latest/en/skuid/models/ui-only-models-fields.html#ui-only-functionsDAY_OF_WEEK_UTC: Returns a Number corresponding with the day of the week from a Date or DateTime field. This day is calculated according to UTC (Universal Coordinated Time) rather than local time.
DAY_OF_WEEK: Returns a Number corresponding with the day of the week from a Date or DateTime field - in local time
Here's the custom Salesforce formula field I added to my Activity object (which I called StartDateName__c), and below that is the XML for a simple test page I built while researching this. Hopefully, this gives you some ideas on what you can do.
CASE(WEEKDAY(ActivityDate),
1,"Sunday",
2,"Monday",
3,"Tuesday",
4,"Wednesday",
5,"Thursday",
6,"Friday",
7,"Saturday",
"")