我有以下窗口代码:
<div class="k-rtl">
<kendo:window name="userRegWindow" title="User Register" content="${userRegUrl}" draggable="true" resizable="false" width="600" close="onClose" visible="false">
<kendo:window-animation>
<kendo:window-animation-open effects="zoom:in"/>
<kendo:window-animation-close effects="zoom:out"/>
</kendo:window-animation>
</kendo:window>
</div>
<script>
function onClose(){
alert("Closing User");
}
</script>
<style>
.k-rtl {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
}
</style>
窗口打开没有任何问题,但是当我尝试通过单击 [X] 按钮关闭它时,我在 chrome 上收到以下错误:
未捕获的类型错误:无法读取未定义的 kendo.web.min.js:26 的属性“选项”
在 Firefox 上我得到了这个:
[15:05:13.499] TypeError: i is undefined @ http://localhost:8080/Cerberus2_0/resources/js/kendo.web.min.js:26
有谁知道发生了什么?
谢谢弗拉维奥