In the input that I enter date, use datepicker in the following way:
<div class="col-lg-2">
<input type="text" class="form-control" title="" id="fechar">
</div>
$(document).ready(function () {
$("#fechar").addClass("datepicker");
$(".datepicker").datepicker({
changeMonth: true,
changeYear: true
}
);
});
And it works for me correctly, showing the calendar in this way:
But when I add the class col-lg-pull-7 to the div, that is to say if I leave it this way:
Lose the style, the options to change the year and the month showing as follows:
The problem when I use the pull, makes me lose such properties, I would like to find the solution, if anyone knows anything, I would appreciate it. Greetings.