[tw] Re: TW5 - fields for contacts?

2013-11-03 Thread Evolena
Also, is there a way to grab a field from all the tiddlers tagged with Personal contacts? Here is what I've done for a prononciation guide tiddler extrated from tiddlers tagged with lexique which contained a prononciation field: \define prononciationMacro(title) [[$title$]]: $view

Re: [tw] Re: TW5 - fields for contacts?

2013-11-03 Thread Jeremy Ruston
Hi Evolena Thank you! It's great to see others getting their heads around these features. Best wishes Jeremy On Sun, Nov 3, 2013 at 6:59 AM, Evolena julie.strzele...@gmail.com wrote: Also, is there a way to grab a field from all the tiddlers tagged with Personal contacts? Here is what

[tw] Re: TW5 - fields for contacts?

2013-11-03 Thread Evolena
It seems that format=link works with the view widget but not the transclude one (my first attempt with the macro also works with [[$title$]], but I admit it's less smart). Maybe try: $list filter=[tag[personalcontacts]] |$*view* field=title format=link/|$transclude field=email/|$transclude

Re: [tw] Re: TW5 - fields for contacts?

2013-11-03 Thread David Gifford
Yeah that did it! Thanks Evolena (=Julie)! Dave On Sun, Nov 3, 2013 at 7:38 AM, Evolena julie.strzele...@gmail.com wrote: It seems that format=link works with the view widget but not the transclude one (my first attempt with the macro also works with [[$title$]], but I admit it's less

[tw] Re: TW5 - fields for contacts?

2013-11-03 Thread Evolena
Hum.. I give it a try for my prononciation guide, and it seems that each line of the table is considered as a single line, so that the table doesn't render very well (and with the macro it is even worse, as the | of the table are not interpreted). -- You received this message because you are

Re: [tw] Re: TW5 - fields for contacts?

2013-11-03 Thread David Gifford
Works fine for me. What do you have in your fields? I use br iin my fields where I want breaks. Dave On Sun, Nov 3, 2013 at 7:46 AM, Evolena julie.strzele...@gmail.com wrote: Hum.. I give it a try for my prononciation guide, and it seems that each line of the table is considered as a single

[tw] Re: TW5 - fields for contacts?

2013-11-03 Thread David Gifford
Oooohh...I added a second entry and I see what you mean. boo hoo Dave On Sunday, November 3, 2013 7:46:57 AM UTC-6, Evolena wrote: Hum.. I give it a try for my prononciation guide, and it seems that each line of the table is considered as a single line, so that the table doesn't render

Re: [tw] Re: TW5 - fields for contacts?

2013-11-03 Thread David Gifford
I managed to add a tabe class called tiddlerinfotable2, like this $list filter=[tag[personalcontacts]] |tiddlerinfotable2|k |$view field=title format=link/|$transclude field=email/|$transclude field=address/| /$list And in Stylesheet set the table td for that class to width: 150px and it worked,