Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to validate that Ville + Code-postal + Pays are unique.

If validation does not pass, I would like to mark fields as invalid (red as usually).

enter image description here

I already try a first implementation like below:

public class CityEditViewModel
{
    public int CityID { get; set; }

    [Required, Remote("CityAlreadyExists", "City", AdditionalFields = "CountryID, CityID, PostCode", ErrorMessageResourceName = "CityAlreadyExists", ErrorMessageResourceType = typeof(UserResource))]
    [Display(Name = "City", ResourceType = typeof(UserResource))]
    public string CityName { get; set; }

    [Required, Remote("CityAlreadyExists", "City", AdditionalFields = "CountryID, CityID, CityName", ErrorMessageResourceName = "CityAlreadyExists", ErrorMessageResourceType = typeof(UserResource))]
    [Display(Name = "PostCode", ResourceType = typeof(UserResource))]
    public string PostCode { get; set; }

    [Required, Remote("CityAlreadyExists", "City", AdditionalFields = "CityName, PostCode, CityID", ErrorMessageResourceName = "CityAlreadyExists", ErrorMessageResourceType = typeof(UserResource))]
    [Display(Name = "Country", ResourceType = typeof(UserResource))]
    public int CountryID { get; set; }

    public List<SelectListItem> Countries { get; set; }
}

But all the fields are not checked (validate) until I really change something in it. I need a solution where every time I change one of the 3 fields, the all 3 fields are validated and marked in red if needed.

I already check other Stackoverflow posts but did not found a solution to my specific problem.

Thanks for your help.

share|improve this question
1  
I have exactly the same scenario - did you find a solution to this? – iwayneo Sep 21 '12 at 7:50

1 Answer

I had similar scenario too, this one helped me get going

$("#FirstName").change(function () {
        $('#CardNumber').removeData('previousValue');
        $('#CardNumber').valid();
  });

Remote validation MVC 3.0 : multiple fields validation

share|improve this answer
Thank you, I'll try it asap and keep you informed. – Bronzato Nov 15 '12 at 17:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.