我有以下代码用于从数据库中检索数据并设置网格。
一旦我操作网格并保存在数据库中,我希望再次加载网格。
如何再次调用 getJSON 来重新加载数据和网格?
var jqxhr = $.getJSON('/Test/GetData', function () {}).done(function () {
//Load grid using data in jqxhr into grid
//Manipulte data in grid and save in DB
// At this point I want to call $.getJSON to refresh the grid
});