ウィンドウには次のコードがあります。
<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] ボタンをクリックしてウィンドウを閉じようとすると、クロムで次のエラーが発生しました。
キャッチされていない TypeError: 未定義の kendo.web.min.js:26 のプロパティ 'options' を読み取れません
そしてFirefoxで私はこれを手に入れました:
[15:05:13.499] TypeError: i is undefined @ http://localhost:8080/Cerberus2_0/resources/js/kendo.web.min.js:26
何が起こっているか知っている人はいますか?
ありがとうフラビオ