New to KendoReact? Start a free 30-day trial
Disabling Specific Options in KendoReact RadioGroup
Updated on Dec 19, 2025
Environment
| Product Version | 12.0.2 |
| Product | Progress® KendoReact RadioGroup |
Description
I want to disable specific options, not all, in the KendoReact RadioGroup. The default documentation discusses disabling the entire RadioGroup, but it does not cover how to disable individual items.
This knowledge base article also answers the following questions:
- How do I make certain items in a RadioGroup non-selectable?
- Is it possible to disable specific radio options in KendoReact?
- How can I programmatically disable radio buttons in KendoReact RadioGroup?
Solution
To disable specific options in the KendoReact RadioGroup, define the data array passed to the RadioGroup component. Each item in the data array is an object of type RadioButtonProps. Set the disabled property to true for the items that need to be disabled.
Change Theme
Theme
Loading ...
Key Points:
- The
dataproperty of the RadioGroup accepts an array of items. - Each item can include the
disabledproperty to disable specific options.