I'm tryin to change the orientation of the Bootstrap Datetimepicker I even tried with this but I get:
option orientation is not recognized
My definition of the datetimepicker in the html is:
<div class='input-group date datepicker' name="datepicker">
    <input type='text' class="form-control placementT" id="fecha">
         <span class="input-group-addon">
               <span class="glyphicon glyphicon-calendar">
               </span>
         </span>
</div>
In the javascript I have something like this to change the language:
$('.input-group.date').datetimepicker({
            locale: "es",
        });
I tried adding location:'bottom auto' but nothing happens.
 
    