This is a followup question for this one: How does DataAnnotations really work in MVC? There is an example custom validation, and a "Self Validate Model" was mentioned. It is quite interesting, but I don't understand how to write a client side validation for it.
Can my model object implement the IClientValidateble interface (or it is for the dataannotation attributes only?), I would like to see an example on how to do it.
Edit: To my understanding, the "Self Validate Model" works without using DataAnnotations, and declares the validation logic inside the class which properties I'm validating, and it's not (necessarily) using attributes to validate something.
All of the examples I have seen on custom client side validation is about the dataannotation attribute implementing IClientValidatable.
When I'm declaring my validation logic in my class, I don't use attributes to validate the models state.
How to write clientside validation when I'm declaring my validation logic in the Validate method of the model class implementing the IValidatebleObject interface?
Can the class I'm actually passing to the view implement the IClientValidatable interface or something similar?
Taking the same answer:
After you implement the Self Validate Model, witch is a Server Side Validation, you need to create the Client Side Validation part, for that, just create this 3 steps:
append to your
IClientValidateble
classThen you need to write the new jQuery Validator and the metadata adapter that will link the jQuery.Validation with your code providing the correct
data-
attributes for that field (if of course,UnobtrusiveJavaScriptEnabled
is true)create a new
js
file and attach to your<head>
for example asand append the new validation
and then we write the adapter
You can view this in the
AccountModel.cs
when you create a new MVC3 Web Applicatoin, it shows this method that implements theIClientValidatable