Parsing Without Separators
RadDateTimePicker provides parsing logic which allows the end users to enter dates in the input field directly without separators. This feature can be enabled by setting the AllowParsingWithoutSeparator property of the control to True. (Its default value is False)
When this feature is enabled, the entered date will be parsed according to the military format rules and you have to set the DateTimeFormats to one of the supported ones listed in the article in order for this feature to work correctly.
Example 1: Setting the AllowParsingWithoutSeparator in xaml
<telerik:RadDateTimePicker x:Name="radDateTimePicker" AllowParsingWithoutSeparator="True" />
Example 2: Setting the AllowParsingWithoutSeparator in code
this.radDateTimePicker.AllowParsingWithoutSeparator = true;Figure 1 shows how the entered text is handled in both cases. In the first case the text is parsed as a month and day while in the second case - as a year, since no separators are entered.
Figure 1: DateTime parsing

Parsing the Date part
The following table lists the rules applied when using parsing without separators:
| Input | Output |
|---|---|
| “1” or “12” | Sets the day in the month and year of the SelectedDate (if SelectedDate is null, the current month and current year are set). Here is how it looks with different formats:![]() |
| “120” | Depending on the format, it will try to parse it as a day and month in the year of the SelectedDate (if SelectedDate is null, current year is used).![]() The parser works from right to left, in the first case it tries to parse Month=20, as this returns false, it switches to the default parser and parses it as a year. In both the second and third case the parsed date is January 20, current year. |
| “1205” | Again, depending on the format, it will try to parse it as a day and a month in the year of the SelectedDate (or current year if SelectedDate is null).![]() In the first case the parsed date is May 12, while in the second and third cases it is December 5. |
| “12051” | False, until it fulfills the format’s length. |
| “120511” | it should be parsed according to the set format:![]() In the first case the entered string has not reached the format's length, that's why it returns False. Note that in the second case the parsed date is May 11, 2012, while in the third case it is - December 5, 2011. |
| “Jan” | Sets the year and day of the SelectedDate and the month parsed. |



