Hi! I have a RadzenTab control set with Client rendering so that all of the tabs load without having to click on them. This is important to our functionality as we need to validate data on non visible tabs.
It looks like the RadzenRequiredValidator is not accurate when I'm not on the tab.
<RadzenTemplateForm Data="myObj" @ref=departmentInformationForm Context="InfoContext">
<RadzenFormField AllowFloatingLabel="false" Text="My Field" class="w-100 required">
<ChildContent>
<RadzenRadioButtonList Style="padding:5px" @bind-Value="myObj.myBindValue" Name="rblField" class="w-100" TValue="string">
<Items>
<RadzenRadioButtonListItem Text="A" Value ="@("A")" Disabled="IsReadOnly" />
<RadzenRadioButtonListItem Text="B" Value="@("B")" Disabled="IsReadOnly" />
<RadzenRadioButtonListItem Text="C" Value="@("D")" Disabled="IsReadOnly" />
<RadzenRadioButtonListItem Text="D" Value="@("D")" Disabled="IsReadOnly" />
</Items>
</RadzenRadioButtonList>
</ChildContent>
<Helper>
@if (isSubmitting)
{
var test = myObj.myBindValue;
<RadzenRequiredValidator Text="This field is required" Component="rblField" />
}
</Helper>
</RadzenFormField>
</RadzenTemplateForm>
On my tab control that holds the child component where this radio button list is, the rendering mode is confirmed as client.
<RadzenTabs @bind-SelectedIndex=@selectedTabIndex Change="@(() => Save(true))" RenderMode="TabRenderMode.Client">
<Tabs>
<RadzenTabsItem Text="Department Information">
<MyChildComponent @ref=departmentInformationForm />
</RadzenTabsItem>
</Tabs>
</RadzenTabs>
I only want the validator to fire in certain instances such as submitting. We allow the users to process a save without submitting so that's why there's an if check for isSubmitting. I threw in a var test = myBindValue just to see what was in my bind value at the precise time the validator should be popping.
In this instance, if I have landed on my page and click submit without ever going to this tab, isSubmitting is true, var test = null, but the validator does not pop. If after this, I go to the service tab and click submit, isSubmitting is true, var test = null, and I get a form.EditContext.Validate result of false, which is the expected result all the time.
This the code on my child component that I call from my parent component to trigger the form's validation.
public bool IsValid(bool isSubmission)
{
isSubmitting = isSubmission;
StateHasChanged();
return departmentInformationForm.EditContext.Validate();
}
I've tried this with RadzenTextboxes as well and it still fails so I don't think it's restricted to the radio button list.
Here's what the value is showing and the isSubmitting when the form's editContext.Validate is trigger (which should result in a false Validate result but instead results in a true if I'm not on the tab):