Opened 12 years ago

Closed 12 years ago

Last modified 11 years ago

#7451 closed bug (worksforme)

Datepicker does not trigger Validate once date is selected

Reported by: k4t434sispho3nix Owned by:
Priority: minor Milestone: 1.9.0
Component: ui.datepicker Version: 1.8.13
Keywords: Cc:
Blocked by: Blocking:

Description

When using both jQuery Validate and jQuery UI's datepicker the standard validation is not triggered for the Datepicker field once a user has selected a date and the datepicker closes.

Change History (5)

comment:1 Changed 12 years ago by k4t434sispho3nix

Quick fix for this one. After messing around with Validate's timing for a while and coming up with a couple very bloated solutions, I found an easy fix for this on the Date picker end.

Simply call your datepicker like this:

$('#date').datepicker({
    onClose: function() {
        $('#date').valid();
    }
});

comment:2 Changed 12 years ago by Scott González

Component: ui.coreui.datepicker

comment:3 in reply to:  1 Changed 12 years ago by Jörn Zaefferer

Replying to k4t434sispho3nix:

Quick fix for this one. After messing around with Validate's timing for a while and coming up with a couple very bloated solutions, I found an easy fix for this on the Date picker end.

Simply call your datepicker like this:

$('#date').datepicker({
    onClose: function() {
        $('#date').valid();
    }
});

Is that good enough, or are you looking for an integrated solution?

comment:4 Changed 12 years ago by Jörn Zaefferer

Resolution: worksforme
Status: newclosed

comment:5 Changed 11 years ago by Valentin Plamadeala

fix that I use d.datepicker({

onClose: function (dateText, inst) {

d.trigger('blur');

}

});

Note: See TracTickets for help on using tickets.