fields:
- Foo color: foo["color"]
datatype: checkboxes
choices:
- red: red
- green: green
- blue: blue
- Bar color: bar['color']
datatype: checkboxes
choices:
- red: red
- green: green
- blue: blue
[foo comes out with the DOM value of "foo[\"color\"]..." while bar comes out as "bar['color']..." ]
Better names, but like this:
[
foo
comes out with the DOM value of"foo[\"color\"]..."
whilebar
comes out as"bar['color']..."
]