でフローティングパネルを作ろうとしています
var self = this;
this.$widget = (function() {
var $panel = $("#tmpl-float-panel").tmpl({
title : title
});
//close on click on cross
$panel.find(".ui-dialog-titlebar-close").click(function() {
self.hide();
});
$panel.draggable({
containment : "parent",
handle : "div.ui-dialog-titlebar",
opacity : 0.75
}).appendTo($container);
return $panel;
})();
後でコンテンツを挿入します
this.$widget.find(".ui-dialog-content").append($content);
パネルの作成に使用される jquery テンプレートは次のとおりです。
<script id="tmpl-float-panel" type="text/x-jquery-tmpl">
<div class="ui-widget ui-dialog ui-corner-all ui-widget-content float-panel no-select">
<div class="ui-dialog-titlebar ui-widget-header ui-helper-clearfix">
<span class="ui-dialog-title">${title}</span>
<a class="ui-dialog-titlebar-close ui-corner-all" href="#" role="button">
<span class="ui-icon"></span>
</a>
</div>
<div class="ui-dialog-content ui-widget-content">
</div>
</div>
</script>
これが質問です。パネルをドラッグしようとすると (タイトル バーをクリックしてマウスを動かす)、ウィジェット全体が消えます。誰かが理由を教えてもらえますか?
UPD:クロムでは、クリックしても消えませんが、何らかの理由ですべての可能な幅が必要です。
html ラッピング フローティング パネルは次のとおりです。
<div id="idA">
<div id="idB">
<!-- here I have panels and other divs -->
</div>
</div>
私が持っているCSSで
#idA {
height: auto !important;
min-height: 100%;
}
#idB {
position: absolute;
width: 100%;
height: 100%;
overflow: hidden;
}