%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /home/c/a/s/casasmonvl/coronamillennial/Scripts/validacions/
Upload File :
Create Path :
Current File : /home/c/a/s/casasmonvl/coronamillennial/Scripts/validacions/Date.js

//Afegit 12/01/17 csierra
//Tractament de l'error d'introduir Date: "The field X must be a date"
//Info: http://stackoverflow.com/questions/15706455/the-field-date-must-be-a-date-in-mvc-in-chrome
//https://stackoverflow.com/questions/23514035/jquery-validation-for-dates-in-dd-mm-yyyy-format
$.validator.methods.date = function (value, element) {
    var isChrome = /Chrome/.test(navigator.userAgent) && /Google Inc/.test(navigator.vendor);
    if (isChrome) {
        var d = new Date();
        return this.optional(element) || !/Invalid|NaN/.test(new Date(d.toLocaleDateString(value)));
    } else {
        return this.optional(element) || !/Invalid|NaN/.test(new Date(value));
    }
};

Zerion Mini Shell 1.0