1
我有一個kendo窗口,它打開一個iframe窗體。當他們提交表格並顯示我希望窗口擴大的結果時。我怎樣才能設置窗口點擊按鈕。kendo:點擊調整窗口大小
var window = $("#PCwindow"),
PCopen = $("#PCopen").bind("click", function() {
window.data("kendoWindow").center();
window.data("kendoWindow").open();
});
window.kendoWindow({
visible: false,
modal: true,
width: "500px",
height: "500px",
title: "Performance Checker",
content: "PCchecker.html",
iframe: true
});
我希望窗口去700像素寬
非常感謝你。我將如何調用window.data(「kendoWindow」)。setOptions({width:700});從函數內執行 – user2012783
只需執行'$(「#PCwindow」)。data(「kendoWindow」)。setOptions({width:700});',它應該可以工作 – OnaBai
試試這個:http://jsfiddle.net/OnaBai/KASSk/embedded/result/ – OnaBai