Unplanned
Last Updated: 03 Jan 2023 10:11 by Peter
Peter
Created on: 03 Jan 2023 10:11
Category: ValidationMessage
Type: Feature Request
1
Add the ability to bind the Validation Message to the field name (as a string)

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; }
}

0 comments