Kendo: Handling Errors in Ajax Data Requests
问题 Using Kendo UI in MVC4 I have a Grid that makes Ajax calls for data back into the Controller: public ActionResult SearchUser_Read([DataSourceRequest]DataSourceRequest request) { var data = CreateAnExcaptionHere(); return Json(data.ToDataSourceResult(request)); } How do I use this call to inform the page that there was an error? 回答1: If you need to display an error message from the server then you can do it by returning a DataSourceResult object with only its Errors property set: return this