I have a simple TW, listing drugs that I take with a flag for when a refill of the script is needed.
The view template lists the contents of each field through an edit-text widget so I can simply edit the text of the field even if not in edit mode.
<$list
filter="[<currentTiddler>tag[Prescription]]" >
Drug Name: <$edit-text tiddler=<<currentTiddler>> field="drug_name" />
Dosage: <$edit-text tiddler=<<currentTiddler>> field="dosage" />
Number in Box: <$edit-text tiddler=<<currentTiddler>> field="number_in_box" />
How Often: <$edit-text tiddler=<<currentTiddler>> field="how_often" />
Prescribed By: <$edit-text tiddler=<<currentTiddler>> field="prescriber_name" />
Reason for Prescription: <$edit-text tiddler=<<currentTiddler>> field="reason_started" />
Date Prescribed: <$edit-text tiddler=<<currentTiddler>> field="date_started" />
Date Ended: <$edit-text tiddler=<<currentTiddler>> field="date_ended" />
Refill Required: <$edit-text tiddler=<<currentTiddler>> field="date_ended" />
New Script Needed: <$edit-text tiddler=<<currentTiddler>> field="new_script_required" />
</$list>
Each drug is listed with its corresponding details and I can even change the value of a field when is ‘display’ mode by just typing the new value into the field. After doing this, the new value correctly displays through the viewtemplate even after closing and reopening the tiddler.
However, a list widget with filter=[refill_required[yes]]
does not pick up that the field has changed and so does not display the title of that drug. If I go into edit mode and retype the refill_required field to ‘yes’ then the list widget works perfectly.
Why does this not work? Obviously, some internal flag is not set unless one goes through edit mode but in this case, that’s a bugger.
Any clues how to get this to work?
bobj