Hi, I'm trying to make a filter that shows tiddlers created by a certain date.
So, I have a tiddler that has custom "day" field. Then I have an interface to change it:
<$edit-text field="day" tag="input" type="date"/>
So far, so good. Then I have a list of tiddlers that were created on the selected date:
<$list filter="[sameday[???]!is[system]]">
<$view field="title"/>
</$list>
How do I insert content of "day" field from current tiddler to the search field of the filter above? Is there a way to do that?