Hi all,
Thanks for your help to date, it's been really useful.
I'm using tiddlywiki to track a whole help of projects. For a summary
list I want to be able to see when the projects started and ended.
I've set up the following which works fine:
<<forEachTiddler
where
'tiddler.tags.contains("Projects") && tiddler.created'
sortBy
'tiddler.created'
descending
write
'"*"+tiddler.data("projectnumber")+" [[" +tiddler.title+"]]
("+tiddler.data("startdate")+" to "+(tiddler.data("closedate")
==null?"current":tiddler.data("closedate")) + ")" + "\n"'
>>
However, I want to be able to format the dates into a specific date
format.
I've tried using:
tiddler.data("startdate").formatString("MMM YYYY")
but it doesn't seem to work.
Is there a way to take the date string information in a tiddler.data
("item") field and force it into a date format?
Cheers
Trent
--
You received this message because you are subscribed to the Google Groups
"TiddlyWiki" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/tiddlywiki?hl=en.