I want to create multiple checkboxes in a tiddler.
With a simple:
<$checkbox></$checkbox>
I can have multiple checkboxes in a tiddler but it does not retain the state on reload.
Something like:
<$checkbox tiddler="ExampleData" index=<<currentTiddler>> checked="selected" unchecked="" default=""> Selected?</$checkbox>
retains the state on reload. But that means I can have only one checkbox in a tiddler.
How can I append <<now YYYY0MM0DD0hh0mm0ssXXX>>
to <<currentTiddler>>
(something like <<currentTiddler>><<now YYYY0MM0DD0hh0mm0ssXXX>>
) so the index becomes unique.
That will mean that the state will be retained and I can have multiple checkboxes in a tiddler.