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