formgen-react
Version:
Formula generator with JSON for react. UI Fabric controls are used for rendering
37 lines (33 loc) • 1.01 kB
JSON
{
"$schema": "../../schemas/jfrom-schema.json",
"id": "testform",
"title": "Test",
"rows": [{
"columns": [{
"label_with": 4,
"controls": [{
"id": "text",
"validators": [{
"validator_type": [ "Required" ]
},{
"validator_type": [ "Integer"],
"message": "no int"
}],
"title": "Textbox",
"value": "test",
"control_type": [ "Textbox" ],
"info": "Info Test",
"config": {
"errorMessage": "test",
"onBeforeChange": "test",
"onBlur": "test"
},
"label_position": [ "Left"]
},
{
"id": "submit",
"control_type": ["SubmitButton"]
}]
}]
}]
}