When Modal popup is opened for the first time, date picker works but next time date picker doesnt show up.
Found the below fix. Once i updated my Jquery file it worked?
Is there any other solution? or we need to alter the jquery file?
1.10.2 causing problems
/* Initialise the date picker */ if (!$.datepicker.initialized) { $(document).mousedown($.datepicker._checkExternalClick); $.datepicker.initialized = true; }
1.9.2. version, working as expected
/* Initialise the date picker */ if (!$.datepicker.initialized) { $(document).mousedown($.datepicker._checkExternalClick) // !!!!!!!!!! // The next code line has to be added again so that the date picker // shows up when the popup is opened more than once without reloading // the "base" page. // !!!!!!!!!! .find(document.body).append($.datepicker.dpDiv); $.datepicker.initialized = true; }