Wave is giving me a "missing fieldset" warning for a RadzenRadioButtonList (code below).
<RadzenRadioButtonList aria-label="Did the employee complete UI Confidentiality Modules 1, 2 and 3 of the current year?" Name="conMod" @bind-Value=@DOLMainFrameRequest.ModulesCompleated TValue="int" Disabled="@ReadOnly">
<Items>
<RadzenRadioButtonListItem Text="Yes" Value="1" />
<RadzenRadioButtonListItem Text="No" Value="2" />
</Items>
</RadzenRadioButtonList>
researching this I can see how to implement it on a bootstrap list but cant apply it to the Radzen control. I tried adding a RadzenFieldSet (code below) but this had no
effect.
<RadzenRadioButtonList aria-label="Did the employee complete UI Confidentiality Modules 1, 2 and 3 of the current year?" Name="conMod" @bind-Value=@DOLMainFrameRequest.ModulesCompleated TValue="int" Disabled="@ReadOnly">
<Items>
<RadzenFieldset>
<RadzenRadioButtonListItem Text="Yes" Value="1" />
<RadzenRadioButtonListItem Text="No" Value="2" />
</RadzenFieldset>
</Items>
</RadzenRadioButtonList>
``