Completed
Last Updated: 20 Dec 2024 14:56 by ADMIN
Release 2025 Q1 (Feb)
Created by: Sam
Comments: 0
Category: ValidationMessage
Type: Bug Report
1
The TelerikValidationMessage does not set its role to alert which is an accessibility issue. For reference, the ValidationSummary has role="alert".
Unplanned
Last Updated: 03 Jan 2023 10:11 by Peter

Currently, you can bind the Validation Message by using a syntax similar to:

<TelerikValidationMessage For="@(() => customer.CustomerName)" />

I would like to be able to use a syntax like:

<TelerikValidationMessage For="@(() => validateFor)" />

where validateFor is a string:

@code {
    public string validateFor { get; set; }
}