Is there a way to disable InputRadioGroup in blazor webassembly?
I tried <InputRadioGroup Disabled="false">, but that is obviously not working. Any other way?
, but that is obviously not working. Any ot" /> , but that is obviously not working. Any ot" /> , but that is obviously not working. Any ot"/>
Is there a way to disable InputRadioGroup in blazor webassembly?
I tried <InputRadioGroup Disabled="false">, but that is obviously not working. Any other way?
Wrap the
<InputRadioGroup>in a<fieldset>and disable that.The
<InputRadioGroup>does not output any HTML. It outputs a CascadingValueCascadingValue<InputRadioContext>and its ChildContent only.Source Code