Kendo ui iframe模式下的剑道窗口:未从服务器请求URL

Kendo ui iframe模式下的剑道窗口:未从服务器请求URL,kendo-ui,Kendo Ui,我认为以下配置是有效的: var wdiv = $("#messagewindow"); if (!wdiv.data("kendoWindow")) { wdiv.kendoWindow({ iframe: true, width: "777px", height: "666px", title: "foo title",

我认为以下配置是有效的:

    var wdiv = $("#messagewindow");
    if (!wdiv.data("kendoWindow")) {
        wdiv.kendoWindow({ 
            iframe: true,
            width: "777px",
            height: "666px",               
            title:  "foo title",           
            data: { startdate: urldate, eeid: eeid, deptid: deptid },
            url: "foo.htm",
            type: "GET"
        });
    }     

    wdiv.data("kendoWindow").open();
窗口打开,但没有网络活动<根据Fiddler的说法,服务器未请求strong>Foo.htm


我是否忽略了配置中的某些内容?

指定url的选项是
内容
。文档中。

创建时没有url之类的东西


你寻找的东西叫做内容。打开窗口时使用Url。

谢谢您的回复,@OnaBai。我正在阅读您引用的页面的“参数”部分:
从服务器请求数据的选项。如果省略,窗口将使用创建窗口时提供的内容属性。
但我现在看到参数仅适用于refresh()。感谢您的澄清,Pechka。我现在看到这些参数应用于refresh()方法。