vote up 4 vote down star
4

I'm searching for a robust lightweight grid for ASP.NET MVC. I'd rather not write a grid, if someone else has done it,but I have yet to find a decent grid. It should be 508 compliant and for the most part, 508 compliance eliminates all the JavaScript grids.

  • It has to be easy to use.
  • Not too expensive ( a couple hundred dollars )

I've already reviewed the following grids:

Update

I found a javascript grid that performs the magic I am looking for yet, maintains 508 compatibility.

It's a jQuery plugin called Datatables. It takes a preexisting table on the page and gives it sortablity and search features. Other grids would either render the table themselves or make ajax requests to the server.

flag

79% accept rate
1  
How relevant is the "MVC" part to your question? Either the grid is built server-side or client-side. Which one are you looking for? – Mike May 7 at 2:32
duplicate: stackoverflow.com/questions/177275/… – Mauricio Scheffer May 7 at 2:56
No it is not. I need a grid that is 508 compatible. The grids they suggested won't work because they depend on JavaScript, hence the "already reviewed grids" – Charles Conway May 8 at 7:25
1  
Did you see MvcContrib's grid? it doesn't require javascript AFAIK. – Mauricio Scheffer May 9 at 11:39
I did. The problem is it embeds logic (implementation, ie. for loop, ) in the presentation. I can do the same thing myself without embedding code in the presentation. – Charles Conway May 9 at 18:39
show 1 more comment

2 Answers

vote up 2 vote down check

I like this one: http://www.codeproject.com/KB/aspnet/MVCFlexigrid.aspx

there are also

http://blog.maartenballiauw.be/post/2008/06/Code-based-ASPNET-MVC-GridView.aspx http://www.reconstrukt.com/ingrid/

link|flag
It appears that the first and third links use javascript, which might violate the 508 compliance as stated in the question. However, the second link looks like pure server side generated HTML. – Kevin Pullin May 7 at 2:26
vote up 1 vote down

The Yahoo YUI Library DataTable control supports "progressive enhancement". You output a standard HTML table. This displays just fine on browsers with JavaScript disabled. On browsers that do support JavaScript, the table replaced with an enhanced version that can support client-side sorting and other presumably other fancy things (I've only ever used it to enable sorting).

link|flag

Your Answer

Get an OpenID
or

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