I have a small question on the use of the EditFieldPlugin.
(found at http://www.tiddlytools.com/#EditFieldPlugin )

In the following simplified example I have 2 fields that use a central
tiddler (datatiddler) for storing their data :

  |number of man    |<<edit q...@datatiddler>>|
  |number of woman|<<edit q...@datatiddler>>|


Then I calculate the sum of both by getting both values q1 and q2,
store the result q3 for future reference, and display q3

<script label="(Re)Calculate" title="(Re)Calculate" key="X">
 result=parseInt(store.getValue("datatiddler","q1"))
+parseInt(store.getValue("datatiddler","q2"));
 store.setValue("datatiddler","q3",result)
 story.refreshAllTiddlers();
 return("")
</script>
|Total|<script>return store.getValue('datatiddler','q3');</script>|h

The behaviour is not exactly as I like:
- Every fieldchange forces me to "confirm" the change with a popup:
"do you want to save changes to ..."
- After refresh the fields are blank, even when the values are
actually stored in the datatiddler.

So my question is: how can I silently accept all changes, and make the
fields display the actual value?

Any suggestion on how to change this without "hacking" the plugin is
appreciated.

Thank you,

Riny

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.

Reply via email to