After upgrading to UI for ASPNET MVC 2019.2.619, default values defined in the grid's datasource section are no longer populating. This was working in a previous version. Now when clicking the new button, the fields are blank. Below is just an example. No code was changed from the previous version. This is for pop-up editing with a template. Any help would be appreciated.
.Model(model =>
{
model.Id(m => m.TruckKey);
model.Field(f => f.DriverName).DefaultValue("Driver Name");
})