ihave one radio button in editable grid so when i select one option it should be disabled how can i do it
Discussion posts and replies are publicly visible
Typically you disable input controls based upon the values selected in other input controls e.g., you have a radio button where you can select "Yes" or "No" and if you select, say, "No" then a logically related input text field is then disabled (although I'd recommend showing/hiding rather than disabling)
A tack on question here, is there a way to disable a single option for a radio button field?
Individual options cannot be disabled.
thank you
You could have different radio-button components with different showWhen conditions that would include/exclude the specific radio-button option in question. Or it may be more appropriate to choose a different input component e.g. a dropdown, where you could include/exclude an option depending on some condition.
ok thank you