mirror of
https://github.com/sartography/demo-process-models.git
synced 2025-02-24 16:38:56 +00:00
37 lines
842 B
JSON
37 lines
842 B
JSON
{
|
|
"destination": {
|
|
"ui:widget": "typeahead",
|
|
"ui:options": {
|
|
"category": "cities",
|
|
"itemFormat": "{name} ({state}, {country})"
|
|
}
|
|
},
|
|
"stateOfOrigin": {
|
|
"ui:widget": "typeahead",
|
|
"ui:options": {
|
|
"category": "states",
|
|
"itemFormat": "{name} ({country})"
|
|
}
|
|
},
|
|
"someCountry": {
|
|
"ui:widget": "typeahead",
|
|
"ui:options": {
|
|
"category": "countries",
|
|
"itemFormat": "{name}"
|
|
}
|
|
},
|
|
"someEmployee": {
|
|
"ui:widget": "typeahead",
|
|
"ui:options": {
|
|
"category": "employees",
|
|
"itemFormat": "{first_name} {last_name}"
|
|
}
|
|
},
|
|
"ui:order": [
|
|
"destination",
|
|
"stateOfOrigin",
|
|
"someCountry",
|
|
"someEmployee"
|
|
]
|
|
}
|