BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
I'm trying to bind the ASP.NET Core Grid control to the enumerable view model on the page, e.g.
e-datamanager
property of Grid control to bind remote data using ej.DataManager
.
@{Html.EJ().Grid<object>("HierarchyGrid")
.Datasource(ds=>ds.Json(ViewBag.data))
.AllowPaging()
.Columns(col =>
{
col.Field("OrderID").HeaderText("OrderID").Add();
col.Field("ShipCity").HeaderText("ShipCity").Add();
col.Field("Freight").Width(120).Format("{0:c2}").Add();
}).Render();
}
|