我在 cshtml 页面中有一个多选。当我单击 cshtml 页面中的按钮时,我正在显示 Kendo Window。在剑道窗口中,还有一个多选和确定、取消按钮。
如果用户单击“确定”,我将调用控制器并传递多选值并执行所需的操作。
我想清除 cshtml 多选中的值并在 cshtml 页面中显示 Kendowindow 多选的值。我怎样才能做到这一点 ?这是我的代码。
$("#okay").kendoButton({
click: function () {
var rowID = $("#selectedValues").val();
data = { 'rows': rowID };
$.ajax({
type: "POST",
url: "Rows" + window.location.search,
data: data,
traditional: true,
dataType: "json",
success: function (result) {
$("#Dialog").data("kendoWindow").close();
return true;
},
error: function () {
alert("An Error Occured. Please Cancel and Try Again!");
return false;
}
});
}
});