diff --git a/playground/jon/widget/file-upload-uischema.json b/playground/jon/widget/file-upload-uischema.json new file mode 100644 index 00000000..97cb85ad --- /dev/null +++ b/playground/jon/widget/file-upload-uischema.json @@ -0,0 +1,36 @@ +{ + "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" + ] +}