Re: [tw5] Re: A question regarding radio buttons

2021-03-12 Thread The Scribe
Thank you for the responses. I used Soren’s suggestion and it worked perfectly. I’ve managed to sort out all my other issues and am ready to start adding real data to my list. Woohoo. Again thanks, Karen Sent from my iPad > On 13 Mar 2021, at 1:14 am, Soren Bjornstad wrote: > >  > Mario co

[tw5] Re: A question regarding radio buttons

2021-03-12 Thread Soren Bjornstad
Mario covered how to add the radio button, for the filter I would use regexp (regular expression search). So instead of directly checking *status* with *status{$:/temp/ExampleCodingMode}*, you'd say: regexp:status{$:/temp/ExampleCodingMode} In a regular expression you can then say *.** to matc

[tw5] Re: A question regarding radio buttons

2021-03-12 Thread PMario
On Friday, March 12, 2021 at 12:24:06 PM UTC+1 PMario wrote: <$tiddler tiddler="$:/temp/ExampleCodingMode"> > <$radio value="Completed"> Completed  > <$radio value="New"> New > <$radio value="All"> Show all > > There shouldn't be any spaces in the tiddler title. -m -- You received this

[tw5] Re: A question regarding radio buttons

2021-03-12 Thread PMario
On Friday, March 12, 2021 at 10:51:22 AM UTC+1 TheScribe wrote: The coding for New and Completed is below. These work fine. > > <$radio tiddler="$:/temp/ExampleCodingMode" > value="Completed"> Completed  > <$radio tiddler="$:/temp/ExampleCodingMode" value="New"> New > > However, I don't know how

[tw5] Re: A question regarding radio buttons

2021-03-12 Thread TheScribe
I should have given the code I've used for the radio buttons. What I'm trying to achieve is radio buttons with these options: Show All, New, Completed The coding for New and Completed is below. These work fine. <$radio tiddler="$:/temp/ExampleCodingMode" value="Completed"> Completed  <$rad