November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
To get your above code to work you can try this:
public static MvcHtmlString PropertyForDateTime<TModel>(this HtmlHelper<TModel> html, Expression<Func<TModel, DateTime>> expression) { Func<TModel, DateTime> method = expression.Compile(); DateTime value = method(html.ViewData.Model); DateTime displayValue = value.AddHours(6); return PropertyExtensions.PropertyRenderer.PropertyFor(html, (expression.Body as MemberExpression).Member.Name, null, null, expression, templateName => { return new MvcHtmlString(displayValue.ToString()); }); }
Another option would be to create your own date/time editor that doesn't normalize the dates to the user's local time zone.
See also this discussion for more information:
https://world.episerver.com/Modules/Forum/Pages/Thread.aspx?id=118042
I must be tired today. Instead of above you can create a display template and save it as /Views/Shared/DisplayTemplates/DateTime.cshtml:
@model DateTime? @if (!Model.HasValue) { return; } @Model.Value.AddHours(6)
If you don't want it globally for all date properties you can give the display template another name and set UIHint on your property or explicitly set template name in PropertyFor helper.
@Html.PropertyFor(m => m.StartPublish, "MyTemplateName")
Thank you Mattias. The first solution you posted works. I'll also explore those other options.
We are seeing some unexpected behavior with a DateTime control in the CMS that appears to stem from how DOJO and the browsers interpret UTC time. For example, from the "On-Page Editing" context the DateTime field displays 1:00 PM. But when that field is selected to Edit, or if we toggle to the Content tab of the Properties view, the time shows up 6 hours later (7:00 PM).
For context, our servers are in one time zone, we are in a second time zone, and our clients are in a third time zone. When they enter 1:00 PM we expect the CMS to display 1:00 PM in the "On-Page Editing" view and in the "Properties" view and in the DOJO date/time control. The time needs to be consistent in all of these places, but presently it is not.
One approach I'm making to correct this is to extend the PropertyFor HTML helper to adjust the time displayed. So I created a helper called PropertyForDateTime, and from that helper I'm able to successfully capture the value that the field presents. Now I need to add 6 hours to that value to make it align with the DOJO control. But I'm stuck on how to do that.
When debugging the solution I can see the property value in the Watch window under html.ViewData.Model.[MyPropertyName]. But I don't see a way to edit the value of that property. What is the proper syntax or method of doing this? My code is below.
If there is an easier or better way to tackle this time-discrepancy problem please let me know. Thanks for your help.