Reputation: 18107
I am new to ASP.NET MVC and would like to know is here any helper which could help to render simple table? For example I call @Html.DisplayTableFor(model)
and helper takes all model properties and render them as html table.
Upvotes: 3
Views: 3333
Reputation: 1547
You can use the webgrid option:
@{
var grd = new WebGrid(options);
}
@grd.GetHtml();
You can find a tutorial here:
Upvotes: 2