non-JS Calendar

@hoopyfrood I am still in the process of modifying your calendar for my needs. What I want is a single day view like in Google calendar that fill the entire calendar space while hiding the rest of the days of that month. Any suggestions on how to achieve that?

I went ahead and added that as a feature, check it out on the Tiddlyhost site. Basically I added a button that writes the date’s information into fields so that specific date’s cell’s contents can be referenced and transcluded using those variable values, and used some $list widgets to hide/reveal the full month/single day contents. (it’s the “full screen” icon that is next to the MM/DD/YYYY date on the popup that appears when you click on a date)

The button is on a tiddler called " $:/plugins/EventCal/cell/solo-btn" and I transcluded it into “$:/plugins/EventCal/popup/contents” but you might want to move it to somewhere on “$:/plugins/EventCal/popup” or “$:/plugins/EventCal/cell/contents” depending on your UI preferences.

You can also customize what exactly you want shown in single day mode by changing what is going on inside the $list widget in “$:/plugins/EventCal” that calls on the procedure <<cell>>, just be mindful of the $let variable definitions needed to transclude a specific date/cell, and add any of your own variables if they are required for any customizations you have made to the cell contents.

2 Likes

Thank you @hoopyfrood for that update. I will test and give feedback when I am back on my desktop