tempusdominus / bootstrap-3

Tempus Dominus Bootstrap 3
https://getdatepicker.com/5-3/
MIT License
70 stars 23 forks source link

bootstrap-datetimepicker-widget not loading on popup window #114

Open ssahay1 opened 5 years ago

ssahay1 commented 5 years ago

Hi Team,

I am trying to integrate eonasdan datetime picker by downloading as "bower install eonasdan-bootstrap-datetimepicker#latest --save" which installed with ver 4.17.47, referring http://eonasdan.github.io/bootstrap-datetimepicker/

It is working perfectly on all pages except on modal pop-up. There are no issue on browser console, You can see in below console image that bootstrap-datetimepicker-widget is not loaded -

image

Following is the code - html : Script : $('#dateTimePicker0').datetimepicker();

Any suggestions please ?

I am using all necessary libraries as it is working fine on other pages of my application.

ssahay1 commented 5 years ago

Following is the solution which I applied -

The datetimepicker was not loading correctly at the modal popup which pops out as a separate window, So I added following jquery load function to make it work.

$(function(){ $('#datetimepicker8').datetimepicker(); });

Thanks.