mm-dynamic-forms
Version:
Customized ngMaterial formly generator
50 lines • 964 B
JavaScript
[
{
"type": "text",
"model": "vm.searchInfo.first_name",
"label": "First Name",
"tabIndex": "1"
},
{
"type": "text",
"model": "vm.searchInfo.last_name",
"label": "Last Name",
"tabIndex": "2"
},
{
"type": "text",
"model": "vm.searchInfo.email",
"label": "Email",
"tabIndex": "3"
},
{
"type": "tel",
"model": "vm.searchInfo.mobile",
"label": "Mobile",
"tabIndex": "4"
},
{
"type": "number",
"model": "vm.searchInfo.processor_ref_id",
"label": "Processor Ref id",
"tabIndex": "5"
},
{
"type": "text",
"model": "vm.searchInfo.user_hash_id",
"label": "User Hash ID",
"tabIndex": "6"
},
{
"type": "select",
"model": "vm.searchInfo.status",
"label": "Status",
"tabIndex": "7",
"empty": "Select status",
"options": {
"pending" : {"label":"Pending"},
"success": {"label":"Success"},
"failed": {"label":"Failed"}
}
}
]