Skip to content
Discussion options

You must be logged in to vote

The easiest way would be to tweak the data model (example below). You can also create a field (object or array) that distributes its children into two columns.

Schema

{
  "type": "array",
  "title": "Columns",
  "items": [
    {
      "type": "object",
      "properties": {
        "foo": {
          "type": "string"
        },
        "bar": {
          "type": "string"
        },
        "baz": {
          "type": "string"
        }
      }
    },
    {
      "type": "object",
      "properties": {
        "foo": {
          "type": "string"
        },
        "bar": {
          "type": "string"
        },
        "baz": {
          "type": "string"
        }
      }
    }
  ]
}

UI Schema

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@aman7000
Comment options

Answer selected by aman7000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants