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.
You can use the webgrid option:
@{
var grd = new WebGrid(options);
}
@grd.GetHtml();
You can find a tutorial here:
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With