is there a grid for asp.net mvc that acts just like the asp.net webforms datagrid
the behavior that I need is to pass to the grid a DataTable without specifying the amount of columns
is there a grid for asp.net mvc that acts just like the asp.net webforms
Share
In my opinion you should not be using any of the server controls in MVC.
You will need to use a table and iterate through thr required objects, MVC allows much more control over the HTML which meens that you have to do a little more work.
I think you best look at the NerdDinner example.
http://nerddinner.codeplex.com/
And here is an example,