Edit of field displayedbut not find through filter

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

your form is editing the wrong field

I think you have a copy/paste error…

should probably be:

Refill Required: <$edit-text tiddler=<<currentTiddler>> field="refill_required"  />

-e

Thanks people. Sorry to waste your time.

The issue of the copy paste error had been resolved in an earlier version of the TW but had not rippled through to ‘slave’ versions of it running on iPad and iPhone. I didn’t realise that until just now when I went back to the issue. I am trying to create a master/slave environment so that any change on one is rippled through to the master copy. I haven’t managed this yet but didn’t realise that was not working.

Also a confusion related to Quine2, Files and Dropbox storage on iOS.

Sorry again to waste your time.

Bobj