In this below code if user puts the date as 1-3-2023 it is changing to 03-01-2023. User wants to select the date of March 1st but it's selecting January 3rd.where in the code the DateFormat is clearly Mentioned as "dd-MM-YYYY" .
<div class="rz-p-12 rz-text-align-center">
<RadzenLabel Text="Select Date" Component="DatePickerInitialViewDate" Style="margin-right: 8px; vertical-align: middle;" />
<RadzenDatePicker DateFormat="dd-MM-yyyy" TValue="DateTime?" InitialViewDate="new DateTime(2040,06,01)" YearRange="1900:2100" Name="DatePickerInitialViewDate" />
</div>
Please Let me Know if you have any Solution to this .
Thank You.