Use Client-Side Validation when custom [required] attribute is used
on this project we do not use the default dataannotation attributes from the System.ComponentModel.DataAnnotations namespace, but custom attributes are built. So we do place a [required] attribute on a property, but it's a custom built one. For server side validation we managed to override the validation with a custom validation provider, but we are stuck with tthe client side validation. As i read in the docs, i see that when you use the default [required] attribute, these kind of attributes are rendered on the html elements: data-val-lengthmax="10" data-val-length-min="3" data-val-required=