I'm working on a greenfield MVC4 project and am in need of a good MVC-grid to support paging and sorting (and i want to handle the paging and sorting myself, not in the grid). I also like the grid to be lightweight (as i want to be in control of html markup and query parameters) and be able to use lambda expressions for columns.
I have previously used MvcContrib Grid in an older MVC2 project and was quite happy with the extensibility. I have experimented a bit with the webhelper grid in this project but it doesn't seem to be nearly as extensible as the MvcContrib Grid. The MvcContrib project however doesn't appear to be as actively maintained anymore. As far as I can see the main version is for MVC2 and I don't really want to have compatibility issued in a brand new greenfield project.
Does anyone know if the MvcContrib project is expected to release a new version for MVC4? Are there any other lightweight and up to date grids for MVC nowadays?
UPDATE I ended up writing my own grid component (and a pager component) with a syntax style loosely based on MvcContrib with the possibility to swap renderers.
Have you looked into jQuery Datatables http://www.datatables.net/
I recently migrated from MVCContrib Grid to jQuery Datatables. They are pretty awesome.
Here is how we initialize the table.
Here is the Razor View