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>  > <$radio tiddler="$:/temp/ExampleCodingMode" value="New"> New</$radio> > > However, I don't know how to code the Show All button. This option opens > both the New and Completed options so that I can view everything. I've > tried a few things, but my knowledge is limited and nothing is working. >
You should show us the filter, that produces your list. Adding a new option is simple. <$radio tiddler="$:/temp/ExampleCodingMode" value="Completed"> Completed</$radio>  <$radio tiddler="$:/temp/ExampleCodingMode" value="New"> New</$radio> <$radio tiddler="$:/temp/ExampleCodingMode" value="All"> Show all</$radio> or as shown in the docs <https://tiddlywiki.com/#RadioWidget>. <$tiddler tiddler=" $:/temp/ExampleCodingMode "> <$radio value="Completed"> Completed</$radio>  <$radio value="New"> New</$radio> <$radio value="All"> Show all</$radio> </$tiddler> The second example makes it easy to change the tiddler title and only edit it once. -mario -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/2053835b-33c1-403a-93a6-2771971c407dn%40googlegroups.com.

