Ive upgraded my project from Essential Studio 1 to Essential Studio 2 and Ive followed your installation notes here, https://ej2.syncfusion.com/16.1.24/aspnet/documentation/getting-started/asp-core.html?syntax=tag
The grid displays on the view but no data is shown, the spinner is just turning, data is being returned to the view by he viewbag as I can spit it out if I loop through it
Here is my view
<ejs-grid id="Grid1" dataSource="ViewBag.dataSource" allowPaging="true">
<e-grid-pagesettings pageCount="20"></e-grid-pagesettings>
<e-grid-columns>
<e-grid-column field="Id" headerText="Id" textAlign="Right" width="120"></e-grid-column>
<e-grid-column field="HolidayDate" headerText="HolidayDate" width="150"></e-grid-column>
</e-grid-columns>
</ejs-grid>
Here is my controller
public IActionResult Holidays()
{
ViewBag.Title = "Holidays";
ViewBag.dataSource = mxApplicationRepository.GetHolidays().ToList();
return View();
}
Is there something I am missing?
Thanks
Attachment:
images_4b3e5d4e.zip