> student(-tiddlers): BI  BK  DO  ET  ET  HC  HM  JA  JD  JG  JK  LB
> LM  LS  MM  NT  PA  PS  SB  SM  TN
> into the textfield appearing at the bottom of the panel.
> I hit "apply filter" - and get a errormessage: "No tiddlers were
> selected"...

MatchTagsPlugin expects to be given a *boolean expression*, not a
space-separated list of tag values.  You need to have an "or" operator
between each tag, like this:
   DI or BK or DO or ET...
You can also use javascript "||" syntax in place of "or", like this:
   DI || BK || DO || ET ||...
Note: to match a teacher whose initials are "OR", you will have to
'escape' that text with backslashes (to prevent if from being treated
as an "or" operator), like this:
   DI || DK || \O\R || DO || ET || ...

-e

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