How can I display dynamic days of the week?
I have a snapshot monitor for our company to see what is coming up. I'm OK with the top 2 fields showing "Today (not visible in my screenshot)" and "Tomorrow" - easy enough. But, I would like the bottom boxes to be able to change as the week moves. If tomorrow is Friday, box one should read "Saturday" box 2 "Sunday" etc. And, they would need to be able to change as the week rolls. Below is the coding I have in that box. I have used the "criteria='RELEASE_DATE is today.addDay(2)'" function to pull data (changing the 2 to 3, 4, 5), I just don't know how to make the date change in the code below. Where it says value="2 Days".
- <panel>
- <pr width='fill' height='fill'>
- <pc padding='5px' bgColor='#FFFFFF' width='100%' hAlign='center' vAlign='middle'>
- <pr width='auto' height='auto'>
- <pc>
- <text color='#000000' size='36px' uppercase='false' underline='false' bold='true' italic='false' type='Text' value='2 Days'> </text>
- </pc>
- </pr>
- </pc>
- </pr>
- </panel>