Hi,
I experiment currently with var tids=store.getTaggedTiddlers("tag1",
"tag2", ...); code. I want to generate a table of tiddlers tagged with
tag1 AND tag2 but NOT tag3.
With fET you can do something like
'tiddler.tags.contains("tag1") &&
tiddler.tags.contains("tag2")
&& !tiddler.tags.contains("tag3") && !
tiddler.tags.contains("tag4")'
But in plain Javascript tore.getTaggedTiddlers("tag1", "tag2");
realizes only a boolean OR: the array tids holds all tiddlers tagged
with tag1 or tag2.
Does anyone can set me on track how do something like
var tids = store.getTaggedTiddlers("tag1" AND "tag2");
Thanks
Michael
--
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.