Skip to content

Latest commit

 

History

History
67 lines (52 loc) · 1.37 KB

File metadata and controls

67 lines (52 loc) · 1.37 KB

Poly Form Canvas

Example of using JSON Forms with Canvas Object

View on Github Pages

  • This JSON Form Schema defines a property corners which is an array of exactly 4 items.
  • Each item is an object with two required properties x and y, both of which are numbers.
// JSON Form Schema
{
  "properties": {
    "corners": {
      "type": "array",
      "minItems": 4,
      "maxItems": 4,
      "items": {
        "type": "object",
        "properties": {
          "x": { "type": "number" },
          "y": { "type": "number" }
        },
        "required": ["x", "y"]
      }
    }
  }
}
  • This UI Schema defines a vertical layout with one control element.
  • The control is bound to the corners property of the form data (#/properties/corners).
  • The showSortButtons option is set to false, which means that the sort buttons will not be displayed for this control.
// UI Schema
{
  "type": "VerticalLayout",
  "elements": [
    {
      "type": "Control",
      "scope": "#/properties/corners",
      "options": {
        "showSortButtons": false
      }
    }
  ]
}

Get Started

  • git clone

  • cd poly-form-canvas

  • npm i

  • npm run dev

JSON Forms

Vue is not as documented compared to React