Ver Mensaje Individual
  #2 (permalink)  
Antiguo 27/10/2016, 15:25
osmaymoya
 
Fecha de Ingreso: agosto-2015
Ubicación: La Habana
Mensajes: 72
Antigüedad: 9 años, 3 meses
Puntos: 4
Respuesta: Validar si un campo es mayor que otro con Validate de JQuery

Hola he encontrado la solución utilizando jQuery.validator.addMethod, espero les sirva:
Cita:
jQuery.validator.addMethod("biggerthanMinPrice", function (value, element) {
return this.optional(element) || parseInt(value) > parseInt($("#MinPrice").val());
}, jQuery.validator.format("Please enter a value bigger than @Messages.MinPrice."));

$("#create-buy-form").validate({
debug: true,
// Rules for form validation
rules: {
MinPrice: {
required: true,
digits: true,
min: 1
},
MaxPrice: {
required: true,
digits: true,
biggerthanMinPrice: true
}
},

// Do not change code below
errorPlacement: function (error, element) {
error.insertAfter(element.parent());
}
});