grid controls for ASP.NET MVC ? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T13:05:26Zhttp://stackoverflow.com/feeds/question/177275http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/177275/grid-controls-for-asp-net-mvc12grid controls for ASP.NET MVC ?MikeJ2008-10-07T05:00:58Z2009-11-30T17:38:42Z
<p>If you are using ASP.NET MVC how are you doing grid display?
Rolled your own?
Got a library from somewhere?</p>
<p>these are some of the known grid display solutions I have found for ASP.NET MVC</p>
<ul>
<li><a href="http://www.codeproject.com/KB/aspnet/MVCFlexigrid.aspx" rel="nofollow">ASP.NET MVC Flexgrid </a> - Has nice column layout method</li>
<li><a href="http://blog.maartenballiauw.be/post/2008/06/Code-based-ASPNET-MVC-GridView.aspx" rel="nofollow">Code based ASP.NET MVC GridView</a> - simple, small, clean</li>
<li><a href="http://weblogs.asp.net/shijuvarghese/archive/2008/07/23/asp-net-mvc-grid-view-using-mvccontrib.aspx" rel="nofollow">MVC Contrib</a> - grid from codePlex</li>
<li><a href="http://www.trirand.com/blog/?page%5Fid=6" rel="nofollow">jQueryGrid</a> - jQuery grid</li>
<li><a href="http://www.datatables.net/" rel="nofollow">Datatables</a> - jQuery plugin - believed to be section 508 compliant</li>
<li><a href="http://extjs.com/deploy/dev/examples/samples.html" rel="nofollow">extJS</a> - cross browser RIA framework - has grid support</li>
<li><a href="http://www.reconstrukt.com/ingrid/" rel="nofollow">Ingrid</a> - jQuery data grid</li>
</ul>
<p>If you know of anything else that you are using or know to be good, please let me know.</p>
http://stackoverflow.com/questions/177275/grid-controls-for-asp-net-mvc/177703#1777033Answer by Hrvoje for grid controls for ASP.NET MVC ?Hrvoje2008-10-07T09:04:27Z2008-10-07T09:04:27Z<p>If it's just for viewing data, I use simple foreach or even aspRepeater. For editing I build specialized views and actions. Didn't like webforms GridView inline edit capabilities anyway, this is kinda much clearer and better - one view for viewing and another for edit/new.</p>
http://stackoverflow.com/questions/177275/grid-controls-for-asp-net-mvc/186609#1866099Answer by berko for grid controls for ASP.NET MVC ?berko2008-10-09T10:02:08Z2009-05-28T06:01:06Z<p>We have just rolled our own due to limited functionality requirements on our grids. We use some JQuery here and there for some niceties like pagination and that is all we really need.</p>
<p>If you need something a little more fully featured you could check out ExtJs grids <a href="http://extjs.com/deploy/dev/examples/samples.html" rel="nofollow">here</a>.</p>
<p>Also MvcContrib has a grid implementation that you could check out - try <a href="http://code.google.com/p/mvccontrib/" rel="nofollow">here</a>. Or more specifically <a href="http://code.google.com/p/mvccontrib/source/browse/#svn/trunk/src/MVCContrib/UI/Grid/UI/Html/Grid" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/177275/grid-controls-for-asp-net-mvc/194038#1940383Answer by Sean Carpenter for grid controls for ASP.NET MVC ?Sean Carpenter2008-10-11T12:46:27Z2008-10-11T12:46:27Z<p>We have been using <a href="http://www.trirand.com/blog/?page_id=6" rel="nofollow">jqGrid</a> on a project and have had some good luck with it. Lots of options for inline editing, etc. If that stuff isn't necessary, then we've just used a plain foreach loop like @Hrvoje.</p>
http://stackoverflow.com/questions/177275/grid-controls-for-asp-net-mvc/1821241#18212410Answer by Dejan Milicic for grid controls for ASP.NET MVC ?Dejan Milicic2009-11-30T17:38:42Z2009-11-30T17:38:42Z<p>I just discovered Telerik has some great components, including Grid, and they are open source too.
<a href="http://demos.telerik.com/aspnet-mvc/" rel="nofollow">http://demos.telerik.com/aspnet-mvc/</a></p>