对齐 Bootstrap 日期时间选择器,使其位于文本框上方而不是下方

Align the Bootstrap Datetimepicker so that it rests above the textbox instead of below

如何对齐 Bootstrap Datetimepicker 使其位于文本框上方而不是下方。我的弹出窗口 window 目前正在被另一个 div 删除。

代码

$(document).ready(function () {
    $('#datetime').datetimepicker({
        locale: 'en'
    });
});
<input type="text" class="form-control booking" id="datetime" placeholder="I want it now">

Fiddle here

widgetPositioning 选项成功了:

$('#datetime').datetimepicker({
    locale: 'en',
    widgetPositioning: {
        vertical: 'top',
        horizontal: 'left'
    }
});