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