我的项目是使用Kendo UI的MVC构建的。我正在从控制器中检索DataTable作为返回类型。
在控制器中:
return Json(JsonConvert.SerializeObject(dtTable));
在脚本文件或中。 Js文件,从控制器中检索数据。
$.ajax({
type: "POST",
url: "Test/Employee/GetEmployeeDtlsActions",
data: JSON.stringify({
'ID': strUserid,
'Password' : strPass
}),
dataType: "json",
contentType: 'application/json; charset=utf-8',
success: function (data) {
// Getting data over here.
// Here we need to append the row to the grid.
// Need something like gird.addrow().
// Help me how to implement this.
}
在上面的代码中,如何在不刷新任何网格的情况下将一行添加到网格并更新网格?如果有人共享与此问题相关的任何客户端代码,将会很有帮助。