A Radio fields with static data is a form input that allows users to select one option from a predefined list of choices. It is typically used when the selection is mutually exclusive.
The Radio Button Component provides a simple way to present multiple options to the user, ensuring that only a single selection is made. Key characteristics include:
value and label.Complete JSON Object
{
"key":"InputKey",
"type":"radio",
"props":{
"label":"Input Name",
"required":true,
"options":[
{
"value":"Python",
"label":"Python"
},
{
"value":"Java",
"label":"Java"
}
]
},
"validation":{
"messages":{
"required":"Error message for required"
}
}
}
Allowed Custom Properties
Allowed Validations