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
I am using the onBeforeHidePicker callback function to achieve this. I am throwing an error for specific condition to break auto close feature.
function cfOnBeforeHidePicker()
{
// disable auto close timepicker
if (CONDITION) {
throw new Error("Do not hide the timepicker. throw exception");
}
}
Is there any way to disable auto hide? I want to show inline datetimepicker always. It automatically hides when I click anywhere on the document.
The text was updated successfully, but these errors were encountered: