BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
[GridFeatures.cshtml]
@(Html.EJ().Grid<MvcApplication14.OrdersView>("FlatGrid")
.Datasource((IEnumerable<object>)ViewBag.dataSource)
.AllowPaging()
.AllowResizeToFit() //set the column width based on its content
.Columns(col =>
{
...
})
) |
@(Html.EJ().Grid<Document>("HierarchyGrid")
.Datasource((IEnumerable<object>)ViewBag.datasource)
.AllowSorting()
.AllowPaging()
.AllowResizeToFit()
.AllowTextWrap()
.TextWrapSettings(e => e.WrapMode(WrapMode.Header))
.IsResponsive()
.Columns(col =>
{
--------------------
) |