BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
TODAY | ||
19191919191 | 10000 | FL |
18282828281 | 20000 | NY |
JAN. 3, 2016 | ||
1717171717 | 12222 | AL |
1616161616161 | 72727 | WA |
JAN. 5. 2016 | ||
161616161 | 6272.00 | AR |
26262626 | 2626.29 | AK |
26262626 | 12625.00 | PR |
@{Html.EJ().Grid<Object>("FlatGrid")
.Datasource((IEnumerable<object>)ViewBag.data)
.AllowPaging()
.AllowGrouping()
.GroupSettings(group => { group.GroupedColumns(col => { col.Add("CustomerID"); }).ShowGroupedColumn(false).ShowDropArea(false); })
.Columns(col =>
{
col.Field("EmployeeID").HeaderText("Employee ID").Add();
col.Field("CustomerID").HeaderText("Customer ID").Add();
col.Field("ShipCity").HeaderText("ShipCity").Add();
col.Field("Freight").HeaderText("Freight").Add();
}).Render();
}
|