Skip to content

Instantly share code, notes, and snippets.

@CliffCrerar
Last active August 22, 2020 15:24
Show Gist options
  • Save CliffCrerar/5f826ecac10738894872754813cf0764 to your computer and use it in GitHub Desktop.
Save CliffCrerar/5f826ecac10738894872754813cf0764 to your computer and use it in GitHub Desktop.
{
"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"]
}
]
}
{
"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