jdorn / json-editor

JSON Schema Based Editor
MIT License
5.81k stars 1.08k forks source link

Multi-Select for boolean values #827

Open smox opened 5 years ago

smox commented 5 years ago

Hi!

My problem is, that I want to build a multi-level multi-select form and I need different boolean values in different levels.

Currently I use a table with a list of checkboxes (about 30 different values), but it would be much better If I can use something like this: { "type": "array", "items": { "type": "string", "enum": ["value1","value2", ... "value>8"] }, "uniqueItems": true }