I've seen samples that show how to set up paging with the Kendo Grid, but it does not work. Why isn't it working?
The 'view' code looks like:
and the controller looks like:
The 'view' code looks like:
@(Html.Kendo().Grid(Model) .Name("AlertReport") .Pageable(paging => paging.PageSize(20).Position(GridPagerPosition.Bottom))and the controller looks like:
public ActionResult Index() {var output = db.ExecuteStoreQuery<Report>("Report @accountID={0}", AccountIDGet()).ToList(); return View(output);}