Well, that works to recover data date in mm/dd/yy format and if I don't change the filter format it works too.
But filtering does not work if the date is on this format: dd/mm/yyyy.
Okay, let's see a example code, this is my DatePicker, if I don't change the format (commented line) it works but when I use dd/mm/yyyy format filter doesn't work.
I want to display in filter the same format that on the row.
function pqDatePicker(ui) {
var $this = $(this);
$this
.css({ zIndex: 3, position: "relative" })
.datepicker({
changeYear: true,
changeMonth: true,
//dateFormat: "yy-mm-dd",
onClose: function (evt, ui) {
$(this).focus();
}
});
}