angular2-json-schema-form icon indicating copy to clipboard operation
angular2-json-schema-form copied to clipboard

'section' work with angular 4?

Open person2713 opened this issue 6 years ago • 0 comments

Example:

{
  "schema": {
          "configurationID":{
            "title":"DF Configuration ID (do not change)",
            "type":"string",
            "default":"9146935570313860332"
          },
          "sypActionID":{
            "title":"SYP Action ID (do not change)",
            "type":"string",
            "default":"9146925485113854788"
          },
          "orderID":{
            "title":"Order ID",
            "type":"string"
          }
        },
  "form": [
      "*",
    {
      "type": "section",
      "htmlClass": "row",
      "items": [
        {
          "type": "section",
          "items": [
            {
              "type": "submit",
              "title": "Apply"
            }
          ]
        },
        {
          "type": "section",
          "items": [
            {
              "type": "button",
              "title": "Save"
            }
          ]
        },
        {
          "type": "section",
          "items": [
            {
              "type": "button",
              "title": "Save current context"
            }
          ]
        }
      ]
    }
  ]
}

It seems that it's doesn't work.

person2713 avatar Apr 04 '18 12:04 person2713