jquery ui - Datetimepicker calendar hide while scrolling -


i using eonasdan bootstrap 3 datetimepicker. when click picker icon, calendar opens up. after scroll mouse, calendar hidden. can prevent this?

you using datepicker dialog can solve assigning datepicker div this.

html:

<div id="datepicker"></div> 

javascript:

$(function() {     $("#datepicker").datepicker(); }); 

from documentation:

display datepicker embedded in page instead of in overlay. call .datepicker() on div instead of input.


Comments

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -