Hello
I tried your sample and it works fine.
However, there's a difference between the date pickers in the sample and in my application. My has a time picker, while yours does not:
I can't see where this difference comes from. Here's a (extremely simplified) definition of my grid:
@(Html.EJS().Grid("grid").EnablePersistence(false)
.ShowColumnChooser(true)
.Locale("hr")
.AllowPaging(true).PageSettings(p => p.PageSize(10))
.AllowFiltering(true)
.FilterSettings(fs => fs.Type(Syncfusion.EJ2.Grids.FilterType.Menu))
.DataSource(Model.MailsDataSource)
.Columns(col =>
{
col.Field("Id").Visible(false).IsPrimaryKey(true).ShowInColumnChooser(false).Add();
col.Field("EmlMessage.ReceivedTime").HeaderText("Email received")
.Type("datetime").Format("short")
.ShowInColumnChooser(true).Add();
})
.Render()
)
So, I'd like to turn off the time picker, but also I'd like to know why it appears in my application and does not in your demo.
Thanks,
Tom