As time pass I learn more and more about TiddlyWiki.
Reading and asking question on this forum is really useful but so is reading the documentation (who would have thought ;) )
As I go through it I saw the macro qualify and was actually wondering what is the actual use of it as opposed to simply naming explicitly a tiddler?
I wanted to use on some part of my code but found out that it doesn't really work the way I expect it most likley because I am misunderstanding something
for example if I have the following code
!Select the day of the week you want to edit
This week number is <<now WW>>
<$select tiddler=<<qualify select-day>> >
<option>Monday</option>
<option>Tuesday</option>
<option>Wednesday</option>
<option>Thursday</option>
<option>Friday</option>
<option>Saturday</option>
<option>Sunday</option>
</$select>
<$button>
<$set name="day" value=<<qualify select-day>> >
<$action-sendmessage $message="tm-new-tiddler" $param="$:/_ppmt/template/Daily_Records" title=<<now WW>> dayfield=??? tags="[[Weekly Records]]" />
</$set>
Edit Week
</$button>
What should I enter in the dayfield so that I see the day that I selected ? I tried all kind of combination but the best I achieve was to display the title of the qualify tiddler using <<day>>
Thanks in advance
Philippe
I know it sounds like a basic question and there is obviously a concept that I am missing but I can't work it out.