My regional settings in Windows show that date should be formatted as follows:
yyyy-MM-dd
'den 'd MMMM yyyy
Now, when I show a DateTime in you RadPropertyGrid, I get this weird format:
item.Value == "2013-02-12 14:46:39"
item.FormattedValue == "2-12-2013 2:46 "
FormattedValue is shown in the UI (I haven't set the CultureInfo in my app, and all my resources are marked as Neutral). To me, this looks like some non-standard format string.
1) It doesn't use my system's locale.
2) The time has no "PM" suffix.
3) The string has a trailing space.
What's going on? Why doesn't the formatter respect my settings?
yyyy-MM-dd
'den 'd MMMM yyyy
Now, when I show a DateTime in you RadPropertyGrid, I get this weird format:
item.Value == "2013-02-12 14:46:39"
item.FormattedValue == "2-12-2013 2:46 "
FormattedValue is shown in the UI (I haven't set the CultureInfo in my app, and all my resources are marked as Neutral). To me, this looks like some non-standard format string.
1) It doesn't use my system's locale.
2) The time has no "PM" suffix.
3) The string has a trailing space.
What's going on? Why doesn't the formatter respect my settings?