angular2-json-schema-form
angular2-json-schema-form copied to clipboard
'section' work with angular 4?
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.