Bootstrap Datetimepicker Calendar Is Not Visible
I am using bootstrap 3 datetimepicker. Here Bootstrap datetimepicker calendar is not visible outside the grid. It is hiding inside the grid. Please see the jsfiddle. http://jsfiddl
Solution 1:
You need to remove overflow:hidden;
from parent containers also.
Add this css:
.pq-grid, .pq-grid-center, div.pq-grid-cont, .pq-grid-cont-inner {
overflow: visible!important;
}
Demo: http://jsfiddle.net/rtzxsa3e/2/
I am not supporting the use of !important
here. You know your html code well. If you can assign more specific selector which can override the default css of grid plugin, then that will also work.
Post a Comment for "Bootstrap Datetimepicker Calendar Is Not Visible"