Problems loading datepicker inside a div col-lg-pull bootstrap

0

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.

    
asked by Danilo 11.08.2018 в 06:36
source

1 answer

0

I already solved it, I put it in style this:

 #ui-datepicker-div{
z-index:350 !important;
}
    
answered by 11.08.2018 в 07:45