I have like 17 grids on templates that display and service the CMS portion of a site. Until I noticed today, all grids were functioning fine for display and crud operations. Now the grids do not show the data.
I can put a breakpoint at the end of the read function and see that the data is there.
IQueryable<
Product
> res = viewModel.Products.AsQueryable<
Product
>();
DataSourceResult data = res.ToDataSourceResult(request);
JsonResult result = Json(data);
return Json(data);
So as the Read functions exit they have their data but the grids do not display anything! I have been working in an entirely different area on the retail part of the site over the last few days that has nothing to do with Telerik and have not changed any of the code on that controller or associated views that have to do with the CMS portion. I am completely stumped on this one
Any suggestions would greatly help. This is an important issue that has the CMS side of the site down.
Thanks