[tw5] Re: Referencing a Field in another Tiddler during Transclusion

2020-07-05 Thread Scott Masterson
Tony, Never mind, it was my bone-headed mistake. I had the closing tag for the $set widget before the $list widget, so the variable I was using was going out of scope before the list filtered on it. Thanks for your help. Scott On Thursday, July 2, 2020 at 4:18:02 AM UTC-4, TW Tones wrote: >

[tw5] Re: Referencing a Field in another Tiddler during Transclusion

2020-07-02 Thread TW Tones
Scott Try adding variable=nul as a parameter in your list widget so the currentTiddler variable does not change and field reference refer to the original tiddler remain valid. I will look closer later Regards Tony -- You received this message because you are subscribed to the Google Groups

[tw5] Re: Referencing a Field in another Tiddler during Transclusion

2020-07-02 Thread Scott Masterson
Hey Tony, Thanks for the tips, they're really appreciated. I found an easier way to do what I wanted, but without having to change the currentTiddler. Unfortunately, I'm having a problem with the syntax in the list filter that's driving me a bit crazy. In the list filter, if I put the

[tw5] Re: Referencing a Field in another Tiddler during Transclusion

2020-06-21 Thread TW Tones
Scott, Quick tip, in your lists above the `<>` changes according to the list filter, that is why {{!!title}} refers to the tiddler in the list (result of the filter). However you could always use another variable=other-tiddler in the list statement to keep referring to the original tiddler,