diff --git a/ChangeLog b/ChangeLog index aa25a54aae..8234a5e870 100644 --- a/ChangeLog +++ b/ChangeLog @@ -40,6 +40,7 @@ phpMyAdmin - ChangeLog 4.1.10.0 (not yet released) - bug #4301 Grid edit: "SELECT" query is replaced by "UPDATE" query after edit - bug #4278 reCaptcha re-login requires double effort +- bug #4324 Datepicker not showing up on insert page 4.1.9.0 (2014-03-06) - bug #4279 CTRL + up or down moves two fields (part one) diff --git a/js/tbl_change.js b/js/tbl_change.js index e36cb2b4e0..47e9c4ceb4 100644 --- a/js/tbl_change.js +++ b/js/tbl_change.js @@ -491,10 +491,6 @@ AJAX.registerOnload('tbl_change.js', function () { tabindex++; $(this).attr('tabindex', tabindex); }); - // Add all the required datepickers back - $('input.datefield, input.datetimefield').each(function () { - PMA_addDatepicker($(this)); - }); } else if (curr_rows > target_rows) { while (curr_rows > target_rows) { $("input[id^=insert_ignore]:last") @@ -505,6 +501,8 @@ AJAX.registerOnload('tbl_change.js', function () { } } }); + // Add all the required datepickers back + addDateTimePicker(); }); function changeValueFieldType(elem, searchIndex)