We have a server in UK, and our clients are in US with different timezones.
In a grid, we set up a datetime field with default value as datetime.now in the cshtml view file. However, we found the issues:
1. The datetime.now is server datetime, not client datetime, so it is always wrong. how can we use the users datetime value?
2. we have tried using onsave event with gridrow.isnew() to set client's default value. however, if the user change the value, the isnew() is still return true which overwrites user's new input.
Thanks