Hi Customer,
Thanks for contacting Syncfusion support.
This issue happens when we enable both AllowEditing(false) and EditType properties in Grid. This is not recommended way and we suggest you to disable the AllowEditing property for date column like as follows,
Code example:
@Grid
@(Html.EJ().Grid<object>("FlatGrid")
.Datasource((IEnumerable<object>)ViewBag.datasource)
. . .
.Columns(col =>
{
.. .
col.Field("OrderDate").HeaderText("Order Date").AllowEditing(false).Format("{0:MM/dd/yyyy}").Add();
})) |
Please refer to the Help documentation for more information,
If you still face the same issue, then could you please provide following information?
1) Share the Grid code example.
2) Essential Studio version details.
3) Any script error thrown in console window while editing?
Regards,
Venkatesh Ayothiraman.