Completed
Last Updated: 31 Jan 2024 08:56 by ADMIN
Release 2024 Q1

System.ArgumentOutOfRangeException: Year, Month, and Day parameters describe an un-representable DateTime.

This issue happens when using DayView, MultiDayView, Month view modes and when scrolling through the calendar to change the selected date. 

The issue happens on specific devices with android 14, Pixel 7, Galaxy S22. 

Workaround: 
Setting the time zone in calendar renderer to the DayView timelabelformat

public override bool TrySetViewMode(CalendarViewMode view, bool isAnimated)
        {
            if (view == CalendarViewMode.Day)
            {
                Control.DayView.DayEventsViewStyle.TimeLabelFormat.TimeZone = Java.Util.TimeZone.GetTimeZone("add time zone here");
            }

            return base.TrySetViewMode(view, isAnimated);
        }

Completed
Last Updated: 14 Sep 2022 13:54 by ADMIN
Release R3 2022

when using DayViewSettings and applying AppointmentTemplate, the template is not applied, the default one is applied. 

Workaround: apply AppointmentTemeplate to MultiDayViewSettings for UWP.

Completed
Last Updated: 13 Apr 2021 11:56 by ADMIN
Release 2021.1.413 (R1 2021 minor release)
Created by: Lewis
Comments: 4
Category: Calendar & Scheduling
Type: Bug Report
0

Programmatically setting the DisplayDate property of the control doesn't update the UI (just shows the same date/appointments)

 

E.g.   Calendar.DisplayDate = Calendar.DisplayDate.AddMonths(2);

 

This worked in version 2020.1.114.1, but after updating the controls this no longer works. 

Completed
Last Updated: 24 Feb 2021 13:03 by ADMIN
Release R1 2021 SP1
The calendar.ViewMode property isn't updated properly at least in these two scenarios:


Going to the Year view  mode by tapping the title (month name) when in Month view mode.
Going to the Day view mode by tapping a cell (day name) when in Month view mode.
Completed
Last Updated: 25 Feb 2021 04:40 by Mehdi
Release R1 2021 SP1

I have added a TitleCellStyle to the calendar control.

<input:RadCalendar.TitleCellStyle>
    <input:CalendarCellStyle HorizontalTextAlignment="Center" VerticalTextAlignment="Center" BackgroundColor="LightGray" FontAttributes="Bold"/>
</input:RadCalendar.TitleCellStyle>

Then navigate from MonthView to DayView. The Title Text is not updated. It shows the text from the month view

For example, the TitleText in MonthView is January 2021, in the DayView should be the date the month and the year, 13 January 2021, but it displays January 2021

MonthView Title Text:

DayView Title Text

 

Completed
Last Updated: 24 Feb 2021 13:02 by ADMIN
Release R1 2021 SP1

when setting Flow view mode to the RadCalendar control, the UI freeze. 
The Flow mode is set using a custom renderer on iOS.

Completed
Last Updated: 24 Feb 2021 13:01 by ADMIN
Release R1 2021 SP1

Java.Lang.IllegalArgumentException:** 'Comparison method violates its general contract! is thrown when appointment source loads

For example, there are 33 appointments with the same start date and end date and 3 with a different start date and same end date as the other 33 appointments, all appointments are AllDay.
The exception is thrown on Android when loading the appointment source. It works fine on iOS and UWP.

Completed
Last Updated: 24 Feb 2021 13:02 by ADMIN
Release R1 2021 SP1

Default calendar:

<telerikInput:RadCalendar x:Name="calendar"/>

 

 

Setting some styles (copied from https://docs.telerik.com/devtools/xamarin/controls/calendar/styling/calendar-styling-cell) :

<telerikInput:RadCalendar x:Name="calendar">
    <telerikInput:RadCalendar.TitleCellStyle>
        <telerikInput:CalendarCellStyle BackgroundColor="LightBlue" 
            TextColor="Gray" 
            FontSize="20"/>
        </telerikInput:RadCalendar.TitleCellStyle>
    <telerikInput:RadCalendar.DayNameCellStyle>
        <telerikInput:CalendarCellStyle TextColor="Black"/>
    </telerikInput:RadCalendar.DayNameCellStyle>
</telerikInput:RadCalendar>

 

 

 The month name loses current culture localization once the cell is styled. 

Completed
Last Updated: 06 Nov 2020 14:51 by ADMIN
Release 2020.3.1106 (R3 2020 minor release)
Created by: René
Comments: 1
Category: Calendar & Scheduling
Type: Bug Report
0

Maybe I am over looking something, but I am unable to show the RadCalendar in the Agenda view mode with a dark background color. I have tried setting the background color of the RadCalendar to a dark color and the AgendaViewSettings only seem to allow me to set text colors and not the background. 

We use the control in three modes, DayView, MonthView and AgendaView and only in agenda we can't seem to change the background color.

Completed
Last Updated: 06 Nov 2020 14:50 by ADMIN
Release 2020.3.1106 (R3 2020 minor release)

The background color for appointments is no longer visible in agenda view on iOS (Property "Color" on Appointment). The color works on both Day, Month and Week views, but not Agenda view. But it works on Android. It's only on iOS there is no background color. This worked before the latest update (Release R3 2020, Version 2020.3.916.1).

Is there anything else that needs to be done, except setting the Color property of appointments?

Completed
Last Updated: 22 Oct 2020 15:30 by ADMIN
Release R3 2020 SP1

1.Start a swipe gesture to the right (as like when you navigate to next three days) but stop it by return your finger back (holding the finger on the screen);
2. Since the gesture was canceled, you stay at 15th to 17th of July;
3.. Tap on some event to open it on other screen. Then come back to the calendar;
4.. Now you see other dates on the calendar, less than before, somewhat like 11th to 14th or 8th to 10th. Each time when you open other screen, calendar changes its displayed date. To cancel this behavior do new navigation swipe gesture.

Workaround:  get the DisplayDate before the navigation and set it when navigating back

Completed
Last Updated: 16 Sep 2020 12:08 by ADMIN
Release R3 2020
If you try to explicitly set the Locale property of the native CalendarView through a custom renderer, the change is not applied in AgendaView ( the same works properly in other views).
Completed
Last Updated: 07 Dec 2020 16:07 by ADMIN
Release 2020.3.1207 (R3 2020 minor release)
Completed
Last Updated: 19 Feb 2020 15:43 by ADMIN
Release R1 2020 SP1

When change my calendar view to Agenda, appointments with too large Title, overlap the time section in the container box.
Completed
Last Updated: 23 Jun 2020 06:25 by ADMIN
Release R1 2020
When the calendar is in DayView mode and you tap on the 3rd of November, it incorrectly scrolls you back to the 27th of October. Another issue appears if you are on the 2nd and you try to swipe to the 3rd (by swiping the day area) - it does not allow you to do so.
 

Completed
Last Updated: 19 Nov 2019 12:01 by ADMIN
Release 2019.3.1119 (R3 2019 minor release)
When I switch from Multi-day view to Day view it doesn't appear to redraw correctly on UWP. I can switch from Month to Day view and it's fine.

The behaviour I'm seeing is that it doesn't hide the multi-day view appointments and then doesn't correctly draw the day view ones. Please see the screen shot attached.
Completed
Last Updated: 06 Nov 2020 14:56 by ADMIN
Release 2020.3.1106 (R3 2020 minor release)
Created by: Xplor Recreation Admin
Comments: 0
Category: Calendar & Scheduling
Type: Bug Report
1
If you set selected date range when the Calendar is loaded, the selection is not visualized.
Completed
Last Updated: 23 Oct 2019 12:26 by ADMIN
Release R3 2019 SP

set the MultiDayViewStyle (tried both in code and also in the xaml) and the Appointment settings don't seem to have any effect on Android.

The following properties are not applied to the DayViewStyle/MultiDayViewStyle
- AppointmentFontSize
- AppointmentDetailsFontSize
- AppointmentTextColor
- AppointmentDetailsTextColor

Completed
Last Updated: 24 Feb 2021 13:03 by ADMIN
Release R1 2021 SP1
If Calendar TitleCellStyle and DisplayDate are set, control shows the title as current month ..not the month of the display date.
Completed
Last Updated: 18 Sep 2019 08:49 by ADMIN
Release R3 2019

When RadCalendar is inside Xamarin Forms Tabbed Page. Switching between tabs triggers Calendar SelectionChanged and the calendar DisplayDate is changed. 

Workaround:
the issue could not be reproduced when RadTabView is used and its IsContentPreserved property is set to true.

1 2 3