I am using AJAX bound Telerik MVC grid. I am sending data for the grid using a code like the following:
return View(new GridModel(...));
I want to be able to send additional data to client in the same action method. For example I need to send a single int value Total, which is to be shown above the grid (this value must be fetched from db, it cannot be evaluated client-side).
Please share any ideas.