gpt4 book ai didi

jquery - 成功调用函数后,使用 Ajax 调用刷新 Telerik MVC 网格?

转载 作者:行者123 更新时间:2023-12-01 07:28:43 24 4
gpt4 key购买 nike

我看到这个网站上有很多相关的问题。但我仍然无法满足我的要求。

这是我的 ajax 调用

 $.ajax({
type: "POST",
url: "/Medication/StopMedication",
data: { ID: pid, StopNote: note },
dataType: "json",
success: function () {
refreshGrid()
}
});

我的刷新网格是这样的

  function refreshGrid() {
alert("I am at Refresh Grid");
if ($(".t-grid .t-refresh").exists()) {
$(".t-grid .t-refresh").trigger('click');
}
}

首先,成功后我的ajax调用不会触发refreshGrid()函数。谁能帮我解决这个问题

我发现了这个问题并修复了它:

<小时/> 我做了这些改变

 dataType: "text",
success: function (data) {
refreshGrid();
}

function refreshGrid() {
$(".t-grid .t-refresh").trigger('click');
}

最佳答案

要重新加载网格,请在成功 ajax 调用后使用它

var optionsGrid = $("#favorite-grid"); //you grid ID

optionsGrid.data('tGrid').ajaxRequest();

享受

关于jquery - 成功调用函数后,使用 Ajax 调用刷新 Telerik MVC 网格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7862378/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com