URL をダイアログにロードする以下の関数があります。その URL が開かれると、ドキュメントの準備ができたときに関数が実行され、その関数は値に応じて div を表示または非表示にします。これにより、ダイアログが拡大され、自動高さは機能しますが、ダイアログは下に拡大され、中央に配置されなくなります。
そのため、ダイアログを開く > ダイアログで URL を開く > パネル実行を表示する > ダイアログが高さを拡張する > ダイアログが中央に配置されなくなりました。
コードは自動再センタリングを試みました
$.ui.dialog.prototype.options.autoReposition = true;
$(window).resize(function () {
$(".editDialog").dialog("option", "position", "center");
$(".ui-dialog-content:visible").each(function () {
$(this).dialog("option", "position", $(this).dialog("option", "position"));
});
});
$(".ui-dialog-content").resize(function () {
$(".ui-dialog-content:visible").each(function () {
$(this).dialog("option", "position", $(this).dialog("option", "position"));
});
});
ダイアログコード
$(document).ready(function () {
var width = $(window).width() / 2;
$.ajaxSetup({ cache: false });
$(".editDialog").live("click", function (e) {
var url = $(this).attr('href');
$("#dialog-edit").dialog({
title: 'Edit',
autoOpen: false,
resizable: true,
autoResize:true,
minHeight: 'auto',
width: width,
modal: true,
draggable: true,
open: function (event, ui) {
//Show the loading div on open.
$("#dvLoading").show();
//adding a callback function wich will be launched after the loading
$(this).load(url,function(response, status, xhr) {
if (status == "error") {
var msg = "Sorry but there was an error: ";
$(this).html(msg + xhr.status + " " + xhr.statusText);
} else $("#dvLoading").hide();
});
},
close: function (event, ui) {
$(this).dialog('close');
}
});
$("#dialog-edit").dialog('open');
return false;
});
URL ドキュメント対応表示/非表示の分割
$(document).ready(function () {
showPanel()
});
function showPanel()
{
var panel = $("#lstAssetTypes").val();
panel = panel.substr(panel.indexOf(",") + 1)
switch (panel)
{
case "User":
$("#dvWKS").show();
$("#dvNTW").hide();
break;
case "Network":
$("#dvWKS").hide();
$("#dvNTW").show();
break;
default:
break;
}
}
呼び出される Div の HTML
<div id="dialog-confirm" style="display: none">
<p>
<span class="ui-icon ui-icon-alert" style="float: left; margin: 0 7px 20px 0;"></span>
Are you sure to delete?
</p>
</div>
<div id="dialog-edit" style="display: none">
<div id="dvLoading" class="loading"><img src="~/Images/loading.gif"><p>Loading please wait...</p></div>
</div>
<div id="dialog-view" style="display: none">
</div>