I'm having trouble making the datepicker 'open' down.
Follow the parameters of the datepicker I'm using.
$('.date').datepicker({
format: "dd/mm/yyyy",
todayBtn: "linked",
forceParse: false,
autoclose: true,
todayHighlight: true,
language: 'pt-BR',
zIndexOffset: 99999999,
orientation: 'bottom'
});
On some screens zIndexOffset even solved my problem, but in others the field continues to "open" up.
I have cases that remove the orientation parameter, the calendar "opens" below the field, and including the orientation parameter: 'bottom', the calendar is displayed above the field.
Ex:
Correct would be ... (No parameter orientation)
Wrong...(Withparameterorientation:'bottom')