Here is my first attempt to use slices in an application. The
retrieval isn't working. Based on Eric's information, I'm guessing I
have a typo in the retrieval tiddler. I'd appreciate some help in
correcting it.
First, I'm defining data tiddlers with the tag of 'address', with a
structure like (without the {{{}}}):
{{{First: Alan
Last: Cohen
Middle: B.
Street: 123 Main St.
City: Somewhere
State: HI
Postal: 12345
Phone1: xxx-xxx-xxxx
Email1: [email protected]}}}
Then, I'm trying to product a list of first and last names, sorted by
last name using a tiddler with:
<<forEachTiddler
where
'tiddler.tags.contains("address")'
sortBy
'tiddler.title::Last'
ascending
write
'"|"+tiddler.title::First+"|"+tiddler.title::Last+"|"+tiddler.tags
+"|\n"'
>>
The error message is 'ReferenceError: title is not defined'
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---