在 Bootstrap 日期时间选择器中更改方向

changing orientation in Bootstrap Datetimepicker

我正在尝试更改 Bootstrap 日期时间选择器的方向 我什至尝试使用 this 但我得到:

option orientation is not recognized

我在html中对datetimepicker的定义是:

<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>

在 javascript 我有类似这样的东西来改变语言:

$('.input-group.date').datetimepicker({
            locale: "es",
        });

我尝试添加 location:'bottom auto' 但没有任何反应。

阅读了大量 post 和文档后,我成功了!对于未来的访问者,可以阅读所有可用的选项 here 对于这个特定的例子,我做了:

 $('.input-group.date').datetimepicker({
            widgetPositioning:{
                                horizontal: 'auto',
                                vertical: 'bottom'
                            }
        });

现在,我一直在输入的底部都有日期时间选择器,这正是我想要的。