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
Post a Comment