making special validation with Jquery validation
I am using Jquery Validation on my form, it is almost working fine, but I have 2 things I can’t figure out how to validate:
-
On my form is it possible to upload a picture with some AJAX stuff, when a picture is uploaded it is shown. I need to validate that the user has uploaded the picture, I can validate it if I compare the src of the image tag (as default the src=”noimage.gif”). how can that be done with Jquery Validation?
-
I am also using Telerik Comobox on my form, and I also need to validate that control. The Telerik Combobox isn’t based on any standard controls, but it has a client-side API, so if the Jquery Validation could call a custom function where I could write the validation, it could be nice. I also need to bind a special OnChange event from the Telerik Combox to the Jquery Validation. But how can that be done?
Thanks in advance J