Hello again,

I'm trying to catch a Tiddler tagged with a custom field. Below is the
inline js. I've produced a minimal test (MTC) case [1]

I've caught the field value and asigned a var to it. But I can't use
this var to get the tagged tiddlers from the store.

<script show>
var out=[];
var tids=store.getTaggedTiddlers('Q');
for (var i=0; i<tids.length; i++) {
        var t=tids[i].title;
        var u=store.getValue(tids[i] ,"field1");
        var v=store.getTaggedTiddlers(u);
out.push('|'+t+'|'+u+'|'+v+'|');
}
out.push('|Tiddler| field1 | Tiddler tagged by field1|h');
return out.join("\n");
</script>

Ales

[1]https://dl.getdropbox.com/u/1316865/TiddlyWiki/TiddlyWikiTestCases/
TiddlersTaggedWithFieldValue.html
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to tiddlywiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to