Material Select
When you add enum values without any uiSchema.json it will fallback to default material select
Material Select Component integration
.png?alt=media&token=b8ee59b6-1044-45e3-afa2-ffbfc5208f41)
Material Select Component
schema.json
{
"title": "Example for rendering react-select component",
"description": "A simple form with react-select component",
"type": "object",
"properties": {
"select": {
"type": "string",
"title": "Example select",
"enum": [
"Yes",
"No"
]
}
}
}
formData.json
{
"selectTest": "[{\"value\":\"Yes\",\"label\":\"Yes\"},{\"value\":\"No\",\"label\":\"No\"}]"
}
Last modified 1yr ago