Last active
August 22, 2020 15:24
-
-
Save CliffCrerar/5f826ecac10738894872754813cf0764 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"formControls": [ | |
{ | |
"prompt": "what is your name?", | |
"controlType": "input", | |
"name": "name", | |
"inputType": "string", | |
"caption": "Answer:" | |
},{ | |
"prompt": "what colors do you like?", | |
"controlType": "select", | |
"name": "favoriteColor", | |
"inputType": "string[]", | |
"caption": "Select on or more colors", | |
"options": ["red","green","blue","yellow","pink"] | |
} | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"formControls": [ | |
{ | |
"prompt": "Order your meal?", | |
"controlType": "multiSelect", | |
"name": "mealOrder", | |
"inputType": "string", | |
"caption": "Select the food you would like to be included", | |
"options": ["chicken","fish","beef","Beans","Pap","Carrots","Onions"] | |
}, | |
{ | |
"prompt":"When would you like your meal delivered?", | |
"controlType":"datePicker", | |
"inputType":"", | |
"displayFormat":"MMM DD, YYYY HH:mm", | |
"min":"now" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment