7.2 KiB
title | description | type | page_title | slug | position | tags | ticketid | res_type |
---|---|---|---|---|---|---|---|---|
Date Inputs and Pickers with DateTimeOffset | How the Telerik Date Inputs and Pickers work with the DateTimeOffset type | how-to | Date Inputs and Pickers with DateTimeOffset | date-input-picker-kb-datetimeoffset | 1462128 | kb |
Environment
Product | DateInput for Blazor, DateTimePicker for Blazor, TimePicker for Blazor, DatePicker for Blazor |
Description
Can I use a DateTimeOffset
field with the Telerik date input and picker?
Do the Telerik DateInput, DatePicker, DateTimePicker, and TimePicker support the DateTimeOffset
type?
Solution
The Telerik DateInput, DateTimePicker and TimePicker can work with DateTimeOffset
and DateTime
types. The types can also be nullable. When the Value
is of type DateTimeOffset
these Telerik components will use its .DateTime
field, which matches to the local time, just like with a "simple" DateTime
object.
The DatePicker requires a different approach. See the Notes below.
caption Sample of how the Telerik DateTime inputs work with a DateTimeOffset
<p>UTC: @DateValue.UtcDateTime.ToString("dd MMM yyyy, HH:mm:ss")</p>
<p>Local: @DateValue.LocalDateTime.ToString("dd MMM yyyy, HH:mm:ss")</p>
<p>DateTime (used by Telerik components): @DateValue.DateTime.ToString("dd MMM yyyy, HH:mm:ss")</p>
<p>Offset (hours): @DateValue.Offset.Hours</p>
<TelerikDateInput @bind-Value="@DateValue" Format="F" Width="400px" />
<br />
<TelerikTimePicker @bind-Value="@DateValue" Format="F" Width="400px" />
<br />
<TelerikDateTimePicker @bind-Value="@DateValue" Format="F" Width="400px" />
@code{
private DateTimeOffset DateValue { get; set; }
protected override void OnInitialized()
{
var now = DateTime.SpecifyKind(DateTime.Now, DateTimeKind.Unspecified);
// Set the desired time zone and offset.
DateValue = new DateTimeOffset(now, new TimeSpan(3, 0, 0));
base.OnInitialized();
}
}
Notes
It is up to the application logic to initialize that field with the suitable offset according to the user settings, current timezone or other business logic. UI for choosing a time zone and offsets, if needed, is also up to the application and is not offered as part of the Telerik Date and Time inputs and pickers.
You can find some examples of working with DateTime
and DateTimeOffset
objects in the following articles from MSDN:
TelerikDatePicker
The TelerikDatePicker component has no time portion and thus using time offsets is not relevant to such UI. Thus, it requires a DateTime
field. It sets the time to 00:00
hours when choosing a date from it, and you must take that into account when calculating the offset and DateTimeOffset
object, even when using the .Date
or .DateTime
field of the DateTimeOffset
object.
The example below shows how you can use the ValueChanged event of the TelerikDatePicker to apply the time portion so that the offset does not alter the dates. While this prevents you from using two-way binding (@bind-Value
), it will still update the view-model at the same time. You can, of course, use any other suitable logic for your scenario (including creating a separate DateTime
field in the view-model).
caption DatePicker with DateTimeOffset - one way to account for the time difference
<p>UTC: @DateEffective.UtcDateTime.ToString("dd MMM yyyy, HH:mm:ss")</p>
<p>Local: @DateEffective.LocalDateTime.ToString("dd MMM yyyy, HH:mm:ss")</p>
<p>DateTime (used by Telerik components): @DateEffective.DateTime.ToString("dd MMM yyyy, HH:mm:ss")</p>
<p>Offset (hours): @DateEffective.Offset.Hours</p>
<TelerikDatePicker Value="@DateEffective.Date"
ValueChanged="@((DateTime newValue) => UpdateDateTimeOffsetField(newValue))"
Format="d" />
@code{
private DateTimeOffset DateEffective { get; set; }
private void UpdateDateTimeOffsetField(DateTime currDate)
{
// Take the current (existing) time portion to add it to the 00:00 hours the date picker will provide
DateTime currDateWithTime = currDate
.AddHours(DateEffective.DateTime.Hour)
.AddMinutes(DateEffective.DateTime.Minute)
.AddSeconds(DateEffective.DateTime.Second);
// Re-instantiate the DateTimeOffset with the proper time so the offset does not change the date
DateEffective = new DateTimeOffset(currDateWithTime);
}
protected override void OnInitialized()
{
var now = DateTime.SpecifyKind(DateTime.Now, DateTimeKind.Unspecified);
DateEffective = new DateTimeOffset(now, new TimeSpan(3, 0, 0));
base.OnInitialized();
}
}
caption DatePicker with nullable DateTimeOffset - one way to avoid null reference errors
@* If you try to directly use the MyDateTimeOffset.Value.Date for the Date Picker, you can get
null reference exeptions when the struct is null,
such as "Nullable object must have a value." - you can reproduce this without Telerik components
so you need to add a field to take care of the conversion. *@
<p>UTC: @DateTimeReturn?.UtcDateTime.ToString("dd MMM yyyy, HH:mm:ss")</p>
<p>Local: @DateTimeReturn?.LocalDateTime.ToString("dd MMM yyyy, HH:mm:ss")</p>
<p>DateTime (used by Telerik components): @DateTimeReturn?.DateTime.ToString("dd MMM yyyy, HH:mm:ss")</p>
<p>Offset (hours): @DateTimeReturn?.Offset.Hours</p>
<TelerikDatePicker Class="form-control" Value="@DatePickerValue"
ValueChanged="@((DateTime? d) => DateTimeReturnChanged(d))"></TelerikDatePicker>
@code{
private DateTimeOffset? DateTimeReturn { get; set; }
private DateTime? DatePickerValue { get; set; }
private void DateTimeReturnChanged(DateTime? d)
{
DatePickerValue = d;
if (!DateTimeReturn.HasValue)
{
DateTimeReturn = new DateTimeOffset();
}
if (d.HasValue)
{
// Take the current (existing) time portion to add it to the 00:00 hours the date picker will provide
DateTime currDateWithTime = d.Value
.AddHours(DateTimeReturn.Value.DateTime.Hour)
.AddMinutes(DateTimeReturn.Value.DateTime.Minute)
.AddSeconds(DateTimeReturn.Value.DateTime.Second);
// Re-instantiate the DateTimeOffset with the proper time so the offset does not change the date
DateTimeReturn = new DateTimeOffset(currDateWithTime);
}
DateTimeReturn = d;
}
protected override void OnInitialized()
{
if (DateTimeReturn.HasValue)
{
DatePickerValue = new DateTime(DateTimeReturn.Value.Date.Year, DateTimeReturn.Value.Date.Month, DateTimeReturn.Value.Date.Day);
}
base.OnInitialized();
}
}