You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This can be observed by performing a slow click. When you hold down the mouse click button for 1 sec and release it, the date popup opens(on mousedown), then disappears(on mouseup). This is because the document.click event triggers just after the popup open and is detected as an outside click and closes the popup.
The solution is to use document.mousedown instead of document.click.
When click on the date picker, it sometimes flash but did not popup. It seem showed but immediately close down. Would like to know how to solve this.
/html/
/jquery/
$(document).ready(function() {
/date picker/
/from date/
var from_$input = $('#fromDate').pickadate(),
from_picker = from_$input.pickadate('picker')
The text was updated successfully, but these errors were encountered: