I have a text field with an attached datepicker placed at the bottom of the page. My problem is that the datepicker appears below the text field.
Consequently, it appears outside the window. I Googled and found that apparently I can fix this with some orientation
property:
$('#dp2').datepicker({
orientation: 'auto top'
});
but this had no effect. Anyone have an idea how can I achieve this?