I have encountered an issue while using Eonasdan bootstrap datetimepicker in a paramquery grid. Whenever I open the datetimepicker, the calendar appears hidden inside the grid. To tackle this problem, I added the following CSS condition:
.dropdown-menu {
position: fixed;
}
This solution worked in making the calendar visible, but it now opens in either the right-top or right-bottom corner of the grid when clicking the picker icon. How can I fix this to ensure the calendar opens in the correct position?