Here is a NewContact button I use to create a new contact.
\define newContact()
<$action-sendmessage
$message="tm-new-tiddler"
title="New Contact"
tags="Contact"
first-met-on=""/>
\end
<$button class=<<tv-config-toolbar-class>> selectedClass="tc-selected" tooltip="New Contact" actions=<<newContact>>>
{{$:/core/images/quote}}
</$button>
Then I installed the Date Picker Plugin and wanted to use it in the ‘first-met-on’ field. So, I modified the corresponding line to look like this:
first-met-on=<$edit-date field="first-met-on" format="YYYY-MM-DD ddd" />
This, obviously, was a disaster!
How do I get the date picker tool to work in this scenario?
Or I am using a wrong tool/ plugin and need to do this in some other way?