jQuery验证自定义jQueryUI datePickers的插件

时间:2010-04-15 21:02:17

标签: jquery methods datepicker jquery-validate

我有一些datePickers
我已经定制了这些,所以它们只显示月份和年份 这是创建它们的代码

jQuery("input[name*='fechauso']").each(function() {
    jQuery(this).datepicker({
        changeMonth: true,
        changeYear: true,
        showButtonPanel: true,
        dateFormat: 'MM yy',
        constrainInput: true,
        showOn: 'button',
        buttonText: 'Seleccionar...',

        onClose: function(dateText, inst) { 
            var month = jQuery("#ui-datepicker-div .ui-datepicker-month :selected").val();
            var year = jQuery("#ui-datepicker-div .ui-datepicker-year :selected").val();
            jQuery(this).datepicker('setDate', new Date(year, month, 1));
        }
    });
});

现在我添加了一个自定义验证器方法(使用插件)来检查:

  • 如果用户未使用该按钮选择日期,则字段为空,因此应触发自定义验证器方法。这不会发生。

这是自定义验证方法

jQuery.validator.addMethod("isEmpty", function(value, element) {
    return (value == '');
}, "Must select a date with the button besides control");

jQuery("#ct_2_fechauso").rules("add", { 
    required: "#campotilde_psico:checked", 
    isEmpty: true
});

问题是即使我选择了一个日期,也总是要求我再次选择一个日期。 datePicker字段应为readonly

1 个答案:

答案 0 :(得分:0)

尝试使用此

$.datepicker.setDefaults({
    closeOnSelect: true,
    onSelect: function () {
        if (typeof $(this).valid == 'function') {
            $(this).valid();
        }
    }
});