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
#307 closes the widget when you tab out of the widget.. but it doesn't close the widget when you tab out of the original input field...
focus input field
widget opens
blur the input field (or tab away)
widget is still open... but user is now on unrelated field.
/*
This will not work..
the very act of clicking the widget will blur the input and close the widget
*/
$("#myInput").on("blur", function(){
$(this).timepicker("hideWidget)"
});
tried work arounds such as listening for click on widget, but timepicker code contains stopPropagation
My super janky work-around is to listen for focus on surrounding inputs and close the widget
#307 closes the widget when you tab out of the widget.. but it doesn't close the widget when you tab out of the original input field...
tried work arounds such as listening for click on widget, but timepicker code contains
stopPropagation
My super janky work-around is to listen for focus on surrounding inputs and close the widget
https://stackoverflow.com/questions/33164304/auto-close-bootstrap-timepicker/44443769#44443769
The text was updated successfully, but these errors were encountered: