[BUG] DateTime Input popup cut off when displayed inside popup

v8.1.47

When a DateTime Input is displayed in a popup, the date selection popup is masked by the bounds of the popup...

Edit:
I've worked around this using CSS:

.ia_popup[id^="popup-"]{
    /* Fixes bugs with certain input component popups being clipped when displayed inside of a popup (DateTime, PowerChart historical picker, etc) */
    overflow: visible;
}
1 Like