Is there a way with radzen to show only 1 message at a time with multiple validators.
Ex:
<RadzenColumn SizeMD="4">
<RadzenFormField Text="Nom <span class='rz-color-danger'>*</span>">
<ChildContent>
<RadzenTextBox @bind-Value="_profilFormulaireDto.Nom" Name="@nameof(_profilFormulaireDto.Nom)" Disabled="@_profilFormulaireDto.EditMode" />
</ChildContent>
<Helper>
<RadzenRequiredValidator Text="Le nom est requis." Component="@nameof(_profilFormulaireDto.Nom)" />
<RadzenLengthValidator Min="3" Max="150" Text="Le nom doit être entre 3 et 150 caractères." Component="@nameof(_profilFormulaireDto.Nom)" />
</Helper>
</RadzenFormField>
</RadzenColumn>
In this code, I have multiple validators and all the messages are showing but I only want the first one, but all are shown.