1

我正在使用带有 asp.net MVC 3 设计模式的 Kendo UI。我有一个使用模式面板的页面,并且内容是从包含其中的 .cshtml 页面加载的Ajax.BeginForm

这是我的困境:我想onSuccess在 ajax 表单上触发事件时关闭窗口。既然这不是按钮单击,我该怎么办?这是我为单击按钮找到的代码:

$( buttonInsideWindow ).closest(".k-window-content").data("kendoWindow").close()

我不确定我需要从onSuccess事件中使用什么代码。

4

1 回答 1

2

It is fairly simple.

In you onSuccess event handler, you can use the Id of your model window to close it

$("#windowId").data("kendoWindow").close();
于 2013-07-13T14:51:03.313 回答