[tw5] Re: Filter display of Dictionary List items based on tiddler's field??

2022-05-24 Thread David
I'll think about that. Sometimes I may want to select and copy the text. I'll have to think of which I want to do more. Thanks!! On Tuesday, May 24, 2022 at 12:27:54 PM UTC-4 Eric Shulman wrote: > One final tweak to the code: > instead of: > ``` > <$checkbox index=<> checked="1" unchecked="0"

[tw5] Re: Filter display of Dictionary List items based on tiddler's field??

2022-05-24 Thread Eric Shulman
One final tweak to the code: instead of: ``` <$checkbox index=<> checked="1" unchecked="0"/> <> ``` I suggest putting the item text within the body of the $checkbox widget, like this: ``` <$checkbox index=<> checked="1" unchecked="0"> <> ``` This allows you to click on the item text to toggle th

[tw5] Re: Filter display of Dictionary List items based on tiddler's field??

2022-05-24 Thread David
Thanks! That is perfect!. I think I have several other pages that can enjoy this kind of feature, as well. On Tuesday, May 24, 2022 at 8:38:12 AM UTC-4 Eric Shulman wrote: > On Tuesday, May 24, 2022 at 4:36:35 AM UTC-7 David wrote: > >> ``` >> <$list >> filter="[indexes[]search:title:literal[V

[tw5] Re: Filter display of Dictionary List items based on tiddler's field??

2022-05-24 Thread Eric Shulman
On Tuesday, May 24, 2022 at 4:36:35 AM UTC-7 David wrote: > ``` > <$list > filter="[indexes[]search:title:literal[Vegas]sort[]]" > variable=item> > ``` > But it seems your code snippet is not working with the variable/field in > there. It works fine when I put some static text there, though, a

[tw5] Re: Filter display of Dictionary List items based on tiddler's field??

2022-05-24 Thread David
``` <$list filter="[indexes[]search:title:literal[Vegas]sort[]]" variable=item> ``` Thanks for replying. I'll note that other forum for future questions. But it seems your code snippet is not working with the variable/field in there. It works fine when I put some static text there, though, a