Giter VIP home page Giter VIP logo

Comments (2)

sdetweil avatar sdetweil commented on May 24, 2024 1

so, this is a bug in the validation , when using checkboxes in the form (it also sneaks in in the schema)

the doc says

https://github.com/jsonform/jsonform/wiki#multiple-options-the-checkboxes-type

Multiple options: the checkboxes type
If you need the user to select one or more options among a list of choices, the checkboxes form field is for your. It applies to an array property whose items schema explicitly defines a list of possible values in an enum property.

there is a separate bug in the doc, above, which says

the checkboxes form field is for your.

should be

the checkboxes form field is for you.

wiki fixed (sept 18,2022)

from jsonform.

sdetweil avatar sdetweil commented on May 24, 2024

if I change the sample in a similar way, (no array, but property in an object) , I get no results..

{
  "schema": {
    "menu": {
      "type":"object",
        "properties": {
          "option":{
            "type": "string",
            "title": "Option",
            "enum": [
              "starter",
              "maincourse",
              "cheese",
              "dessert"
            ]
          }
      }
    }
  },
  "form": [
    {
      "key": "menu.option",
      "type": "checkboxes",
      "titleMap": {
        "starter": "Starter would be great",
        "maincourse": "No way I'll skip the main course",
        "cheese": "Cheddar rules!",
        "dessert": "Thumbs up for a dessert"
      }
    },
          {
            "type": "submit",
            "title": "Submit",
            "id": "submit_button"
          }
  ]
}

from jsonform.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.