Edit date macro showing events

I use edit-macro from tiddlytools/time to edit my todos due date

<$macrocall $name="edit-date" tiddler=<<currentTiddler>> field="due" type="calendar" format="YYYY0MM0DD0hh0mm0ssXXX" />

this works fine, it opens a calendar to select the date, but I would like to see the events how eg in “TiddlyTools/Time/SidebarCalendar”

is nice to have some context when selecting the date for a task

any ideas if this is possible?

I mention @EricShulman as he should be able to help :nerd_face:

I’ve just updated https://TiddlyTools.com/#TiddlyTools%2FTime%2FEditDate to include TWO new optional macro parameters:

  • datepopup="yes" - show the calendar with full date display, including colorbars for events, alarms, journals, etc.
    Clicking a date shows the Calendar date popup with an added “select this date” button. If datepopup="yes" is omitted (or specifies a value other than "yes"), then the previous calendar behavior is used: no colorbars are shown and clicking the date sets the field value without showing a popup.

  • includetime="yes" - includes the current time in the result (assuming the specified output format contains time format codes; i.e., 0hh0mm0ss0XXX). If 'includetime=“yes” is omitted (or specifies a value other than "yes"), then the previous behavior is used: the result always uses a time value of 000000000.

Please note that all TiddlyTools updates are now being published at https://TiddlyTools.com and the previously published individual files (e.g., https://TiddlyTools.com/timer.html) are no longer being updated (and will eventually be removed and redirected to https://TiddlyTools.com).

enjoy
-e

1 Like

thanks a lot, that it was exactly what I was looking for