我有一个打开kendoWindow(A)的网页;内容是一个iframe,其中包含一个打开另一个kendoWindow(B)的网页。问题是窗口B大于窗口A,因此它没有正确显示。我的目标是在窗口A的顶部显示窗口B(全尺寸),这可能吗?
更新:
这是代码;请注意,iframe比窗口大,但我需要在窗口顶部使用iframe,而不是在窗口内:
<div id="iframewin">
<iframe name="iframe" id="iframe" frameborder="0" />
</div>
$('#iframe').width('800px');
$('#iframe').height('400px');
$("#iframewin").kendoWindow({
width: "600px",
height: "300px",
visible : true
});
$("#iframewin").data("kendoWindow").center();
$("#iframewin").data("kendoWindow").open();
答案 0 :(得分:0)
您的问题应该是ifram,kendo窗口不需要iframe来加载内容
<div id="window"></div>
var window = $("#window"),
if (!window.data("kendoWindow")) {
window.kendoWindow({
Height:"500px" // if you need full screen give 100% for both height and width
width: "600px", // if you need the window to fix to your content remove H & W
title: "About Alvar Aalto",
iframe: true, // if you need to load as a iframe
actions: ["Pin","Minimize","Maximize","Close"],
content: "Content.html",
});
}
window .data("kendoWindow").center();
window .data("kendoWindow").open();
你可以给一个刷新方法的窗口.data(&#34; kendoWindow&#34;)。refresh(URl); 查看现场演示以获取更多信息http://demos.telerik.com/kendo-ui/window/ajax