Hi Team,
I would like to be able to use standard .NET data annotations on my bound property with the RadEntry's validation features.
For example, the following MaxLength attribute:
[MaxLength(12)]
public string CustomerId
{
get => customerId;
set => SetProperty(ref customerId, value);
}
Thank you,
Mads