Datepicker in date-range filter not working
Datepicker in date-range filter not working
Hi all, i'm having a problem with the date-range filter. The first issue was i needed to press enter twice to show the new content of search if after seraching with a date i clean the input field and press enter. Then i solved this problem with:
$('.date_range_filter').bind('keypress keyup', function(e){
if (e.which == 13){
// oTable.fnFilter($(this).val(), null, false, true);
oTable.fnDraw();
return;
}
});
But now when i select the input field, it doesn't pop up the date picker.
Does any one know how to solve this problem??
Thanks!!
$('.date_range_filter').bind('keypress keyup', function(e){
if (e.which == 13){
// oTable.fnFilter($(this).val(), null, false, true);
oTable.fnDraw();
return;
}
});
But now when i select the input field, it doesn't pop up the date picker.
Does any one know how to solve this problem??
Thanks!!
This discussion has been closed.