我看到這個網站有很多相關的問題。但仍然無法爲我的要求做這項工作。成功調用函數後,使用Ajax調用刷新Telerik MVC Grid?
這是我的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');
}
我能解決我的問題。請檢查我已經更新的解決方案頂部 – HaBo