Hi,
we always use a construction to store tiddlers in tiddlyweb like the
following

var newTiddler = ...
...
newTiddler.fields["server.type"]=store.getTiddler
("WorkspaceConfig").fields["server.bag"];
newTiddler.fields["server.host"]=store.getTiddler
("WorkspaceConfig").fields["server.host"];    newTiddler.fields
["server.workspace"]=store.getTiddler("WorkspaceConfig").fields
["server.workspace"];
...
store.saveTiddler(newTiddler.title, newTiddler.title, newTiddler.text,
newTiddler.modifier, newTiddler.modified, newTiddler.tags,
newTiddler.fields, false, newTiddler.created);

but the newTiddler is not immediately saved back to server,
only if i save all changes the newTiddler will be saved.
should we use another construction as the above to create new tiddlers
within plugins to enable autosave for tiddlyweb?

Bye Edi

--~--~---------~--~----~------------~-------~--~----~
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