BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
Hi
There seems to be a problem with selecting Today's date in the e-grids edit forms datePicker where the date is then displayed as yesterdays date in the e-grid.
Quite hard to replicate as I think its got to do with the time.
It might be useful just to demo implementing a date picker in the demo grid
https://ej2.syncfusion.com/aspnetcore/Grid/GridOverview#/material
Regards
<script>
ej.data.DataUtil.serverTimezoneOffset = new Date().getTimezoneOffset() / 60); //Set the servertimezoneoffset
</script>
<ejs-grid id="Grid" allowPaging="true" toolbar="@( new List<object>() {"Add","Edit","Delete","Update","Cancel"})">
<e-grid-editSettings allowAdding="true" allowDeleting="true" allowEditing="true"></e-grid-editSettings>
<e-grid-columns>
<e-grid-column field="OrderID" headerText="Order ID" isPrimaryKey="true" textAlign="Right" width="100"></e-grid-column>
. . . .
</e-grid-columns>
</ejs-grid> |