vote up 12 vote down star
13

If you are using ASP.NET MVC how are you doing grid display? Rolled your own? Got a library from somewhere?

these are some of the known grid display solutions I have found for ASP.NET MVC

If you know of anything else that you are using or know to be good, please let me know.

flag

1  
I was hoping of a grid with javascript support but which could nicely degrade to a full GET request if the JavaScript is disabled. However I will have to build my own :( – Andrei Rinea Feb 3 at 23:33

4 Answers

vote up 9 vote down check

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.

If you need something a little more fully featured you could check out ExtJs grids here.

Also MvcContrib has a grid implementation that you could check out - try here. Or more specifically here.

link|flag
vote up 3 vote down

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.

link|flag
vote up 3 vote down

We have been using jqGrid 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.

link|flag
vote up 0 vote down

I just discovered Telerik has some great components, including Grid, and they are open source too. http://demos.telerik.com/aspnet-mvc/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.