formgen-react
Version:
Formula generator with JSON for react. UI Fabric controls are used for rendering
39 lines (35 loc) • 1.1 kB
JSON
{
"id": "testform",
"title": "Test",
"rows": [{
"columns": [{
"controls": [{
"id": "dropdown",
"validators": [{
"validator_type": [ "Required" ]
},
{
"validator_type": ["MinValue" ],
"value": 2,
"message": "min 2"
}
],
"title": "DropDown",
"config": {
"options": [
{ "key": "1", "text": "Option 1" },
{ "key": "2", "text": "Option 2" },
{ "key": "3", "text": "Option 3" }]
},
"value": "1",
"control_type": [ "DropDown" ],
"info": "Info Test",
"label_position": [ "Left"]
},
{
"id": "submit",
"control_type": ["SubmitButton"]
}]
}]
}]
}