Hello,
I have an issue with RadCalendar : when the focus is in the textbox with the date and time and I press Enter, the day and the month automatically switch. For exemple, if the date is 11/07/2019 and I press Enter, the date changes to 07/11/2019. If I press Enter again, it switch back to 11/07/2019.
But, if the date is 25/07/2019, it don't change to 07/25/2019 (because this date is not valid).
Here's the code I'm using :
<asp:UpdatePanel ID="UpdatePanel10" runat="server" UpdateMode="Conditional"> <ContentTemplate> <telerik:RadDateTimePicker ID="DateDebut" runat="server" OnSelectedDateChanged="DateDebut_SelectedDateChanged" AutoPostBackControl="Both"> </telerik:RadDateTimePicker> </ContentTemplate> <Triggers> <asp:AsyncPostBackTrigger ControlID="btnPrev" EventName="Click" /> <asp:AsyncPostBackTrigger ControlID="btnNext" EventName="Click" /> </Triggers></asp:UpdatePanel><br>
I don't understand what is appening, if someone can please help me, it would be very kind.
