I am a total newbie on the subject. My goal is to create a form to display (then edit) values in a json data tiddler.
My data:
{
"a": "anystring",
"b": { "key1": false, "key2": false, "key3": false },
"c": 0
}
I hit the wall when I want to dynamically display and edit the content indexed by b
(the lenght of the dictionnary could vary). I want to create a button per entry (key1
, key2
, key3
) that toggle the associated boolean value when pressed).