You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 18, 2017. It is now read-only.
If you set the dateTime-Property in the viewModel to a date with 0 hours and minutes like
private DateTime _property = DateTime.Now.Date;
and then using the date picker by changing the current day, the label for datetime is not updated. If you after this rechoose a day, the day displayed in the label is one day beyond the choosen day and the picker repicks the day.
If you set the dateTime-Property with 2 hours, then the bug is not occurring:
private DateTime _property = DateTime.Now.Date.AddHours(2);
If you set the Property with one hour instead, the error is still occurring.
The text was updated successfully, but these errors were encountered:
123ManuelB
changed the title
DateTime-Sample contains an error
ApiSamples: DateTime-Sample contains an error
Jul 7, 2014
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
If you set the dateTime-Property in the viewModel to a date with 0 hours and minutes like
private DateTime _property = DateTime.Now.Date;
and then using the date picker by changing the current day, the label for datetime is not updated. If you after this rechoose a day, the day displayed in the label is one day beyond the choosen day and the picker repicks the day.
If you set the dateTime-Property with 2 hours, then the bug is not occurring:
private DateTime _property = DateTime.Now.Date.AddHours(2);
If you set the Property with one hour instead, the error is still occurring.
The text was updated successfully, but these errors were encountered: