以下は有効な構成だと思います。
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によると、Foo.htmはサーバーから要求されていません。
構成で何かを無視していますか?