I have grid using ajax binding that I edit with a popup editor. When I edit a row I also update the data in rows related to the first.
Is it possible to refresh all of the updated rows without reloading all of the rows?
I've added the updated rows to the list that is returned by the update method but that doesn't refresh the updated rows.
return Json(itemList.ToDataSourceResult(dsRequest));
If it's not possible what is the best way to parse the the response object returned by the grids datasource RequestEnd method? I would like to read one of the fields in the response.
Is it possible to refresh all of the updated rows without reloading all of the rows?
I've added the updated rows to the list that is returned by the update method but that doesn't refresh the updated rows.
return Json(itemList.ToDataSourceResult(dsRequest));
If it's not possible what is the best way to parse the the response object returned by the grids datasource RequestEnd method? I would like to read one of the fields in the response.