2

南ペインの後ろに表示されるjquery uiレイアウトでdatetimepickerを表示する際に問題があります。

フィドルを見る

<div class="ui-layout-center">Center
    <p><a href="http://layout.jquery-dev.com/demos.html">Go to the Demos page</a></p>
    <p>* Pane-resizing is disabled because ui.draggable.js is not linked</p>
    <p>* Pane-animation is disabled because ui.effects.js is not linked</p>
</div>
<div class="ui-layout-north">North</div>
<div class="ui-layout-south">
  <div class="container">
    <div class="row">
        <div class='col-sm-6'>
            <div class="form-group">
                <div class='input-group date' id='datetimepicker1'>
                    <input type='text' class="form-control" />
                    <span class="input-group-addon">
                        <span class="glyphicon glyphicon-calendar"></span>
                    </span>
                </div>
            </div>
4

1 に答える 1

1

私はこのように解決した同様の問題を抱えていました。開いたら、ウィジェットの位置を設定しました。

var $parent = $("#wrapper");
$parent.css("position", "relative");
$element
.datetimepicker({
widgetParent: $parent
}).on("dp.show", function () {
var widget = $(".bootstrap-datetimepicker-widget");
if (widget[0]) {
  widget.css({
    position: "fixed",
    "z-index": 99999999,
    top: $element[0].getBoundingClientRect().top - widget.height() - 10,
    left: $element[0].getBoundingClientRect().left,
    bottom: "auto",
    right: "auto"
  });
}
});      

私のプロジェクトでは、 body タグをラッパーとして使用しています。しかし、このバージョンでは最後にラッパーを使用します。

<div id="wrapper"></div>
于 2016-04-09T09:54:41.680 に答える