I have a simple data tiddler which is my data source for a tiddler that displays it as checkboxes and all that is working as it should.
The display tiddler probably uses code I got off the TW site, I’m sure…
<$tiddler tiddler=“Road Eats”>
<$list filter="[all[current]indexes[]sort[]]" variable=item>
<$checkbox index=<> checked=“1” unchecked=“0”/> <>
</$list>
</$tiddler>
And then that data tiddler is simple, like so…
Hardee’s: 0
Waffle House: 0
Captain D’s: 0
Jack in the Box: 0
What I’m interested in doing is putting another list of checkboxes above the existing one. The top/new one should just show those that are checked (i.e. has a value of 1 in the data tiddler.
I imagine that the same code would be used, but just with an extra param in the filter attribute, right? I searched through the filter operators, but couldn’t find it.
Thanks!