我正在尝试使用url将远程内容加载到Kendo Ui弹出窗口中。 我可以加载内容,但弹出窗口没有根据内容调整大小。请帮我解决这个问题。我正在尝试下面的代码。
function openiframe(url) {
if (url != '' && url != 'flowplayer') {
var myWindow = $("#window");
myWindow.kendoWindow({
actions: ["Close"],
width: '75%',
height: '110%',
position: {
top: '5%'
},
modal: true,
draggable: false,
title: "Course window",
resizable: true,
content: url,
close: SaveTime
});
$("#window").data("kendoWindow").center().open();
}