Is there a way to disable InputRadioGroup in blazor webassembly?
I tried <InputRadioGroup Disabled="false">
, but that is obviously not working. Any other way?
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.
<fieldset disabled="@true">
<InputRadioGroup @bind-Value="answer">
@foreach (var option in Question.Options)
{
<label class="me-3 form-check-label">
<InputRadio class="form-check-input me-1" Value="@option" />
@option
</label>
}
</InputRadioGroup>
</fieldset>
The <InputRadioGroup>
does not output any HTML. It outputs a CascadingValue CascadingValue<InputRadioContext>
and its ChildContent only.