Hi Gcobani,Greetings from Syncfusion support.You can find the steps for implementing the EJ2 Grid in MVC and its available functionalities from the below documentation and online demo sample links,Online demo sample: https://ej2.syncfusion.com/aspnetmvc/Grid/GridOverviewWe have also prepared a local Grid sample in MVC application for your reference. You can download it from the below link,Please get back to us if you require any further assistance.Regards,Sujith R
eNtsaRegs.Add(new eNtsaRegPeopleList("He/She", "[email protected]", "Your course guide template", "", "Teacher", new DateTime(2020, 11, 25), new DateTime(2020, 10, 17, 22, 42, 01))); |
@{
Object customFormat = new Object();
customFormat = (new { type = "time", format = "HH:mm:ss" });
}
<div id="ControlRegion">
@Html.EJS().Grid("Grid").DataSource((IEnumerable<object>)ViewBag.dataSource).Columns(col =>
{
col.Field("TotalActivity").HeaderText("TotalActivity").Type("datetime").Format(customFormat).Add();
}).Render()
</div> |