formgen-react
Version:
Formula generator with JSON for react. UI Fabric controls are used for rendering
36 lines (32 loc) • 974 B
JSON
{
"$schema": "../../schemas/jfrom-schema.json",
"id": "testform",
"title": "Test",
"rows": [{
"columns": [{
"controls": [{
"id": "dropdown",
"validators": [{
"validator_type": [ "Required" ]
},
{
"validator_type": ["MinValue" ],
"value": 2,
"message": "min 2"
}
],
"title": "DropDown",
"dataprovider_list_configkeys": [
"mockDataService.loadList1"
],
"control_type": [ "DropDown" ],
"info": "Info Test",
"label_position": [ "Left"]
},
{
"id": "submit",
"control_type": ["SubmitButton"]
}]
}]
}]
}