Unplanned
Last Updated: 11 Apr 2024 08:05 by Alberto

An arrow is displayed inside the appointment in cases when:

- when editing the appointment star end date and navigating to another week and then returning back to the week with the modified appointment

- adding new appointments to the week

 

Unplanned
Last Updated: 09 Apr 2024 12:01 by Alberto
Cells get completely unresponsive when resizing the app in multi day view
Unplanned
Last Updated: 05 Mar 2024 09:07 by Dinesh

In the RadCalendar, if we set the DisplayDate to future date (For example, current date is 04-03-2024 and the display date as 08-April-2024), application gets crashed in iOS platform. This issue occurs only in iOS 17 and above versions.

Exception

NSInternalInconsistencyException Reason: UIGraphicsBeginImageContext() failed to allocate CGBitampContext: size={0, 0}
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);
        }

Unplanned
Last Updated: 30 Jun 2023 07:19 by Alberto

When changing the view mode from Day to MultiDay or opposite, and having an AppointmentTemplateSelector, exception is thrown on iOS. 

workaround: 

Return the default template when platform is iOS.

if(Device.RuntimePlatform == Device.iOS)

            {

                return default;

            }

Unplanned
Last Updated: 19 Jun 2023 05:56 by Sasi
For example create a 5 minutes appointment. The text is not readable in day multi day view modes. 
Unplanned
Last Updated: 19 Apr 2023 09:02 by Edoardo

When adding a RadCalendar with Day ViewMode in a TabView and switching tabs, null ref exception is thrown. 

Workaround: Set TabView.IsContentPreserved to True 

Unplanned
Last Updated: 02 Dec 2022 13:40 by Milan
when setting a TimeLineBackgroundColor to MultiDayView,  it is not respected on iOS. https://docs.telerik.com/devtools/xamarin/controls/calendar/images/calendar_scheduling_timeline.png The image in the middle is on iOS. The timeline background color is not applied
Unplanned
Last Updated: 18 Aug 2022 12:32 by Egor

When changing the device orientation to a landscape mode, the all-day timeline cell does not resize as expected. The all day text moves the the date cell.

Unplanned
Last Updated: 15 Jun 2022 11:10 by Jakub
MaxCount in CalendarAppointmentsStyle does not work when DisplayMode is set to anything but Shape.
Unplanned
Last Updated: 30 May 2022 10:46 by Teemu
Created by: Teemu
Comments: 0
Category: Calendar & Scheduling
Type: Bug Report
2

white/dark space is shown on the top of the agenda view. This space hovers some of the vents and dates from the agenda. 
You need to scroll through the agenda and the white/dark space disappears. 

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.

Unplanned
Last Updated: 08 Feb 2022 13:40 by Tugsan
When the Calendar is in DayView and there is a DayViewStyle applied with a AllDayAreaBackgroundColor setting, the color is not applied for the Today Date ( when the Calendar Date is DateTime.Today), for other dates the all-day area background is properly set.
Unplanned
Last Updated: 14 Jul 2021 14:55 by Ganpat
If you use DayView and define MinDate and MaxDate with such values that the interval between them is less than a week, the top week area with the days cannot be scrolled.
Duplicated
Last Updated: 17 Jun 2021 05:44 by ADMIN
We are facing issue in Android in day view- Radcalender, if we have appointments at the same time view is getting overlapping each-other, some appointments are getting hidden.
Unplanned
Last Updated: 26 Apr 2021 08:42 by ADMIN

Additional add appointment button is displayed when the device orientation is a landscape and the calendar view mode is Year. When switching from Year to day/multiday the issue happens in these views too.

The issue can be reproduced in the Telerik Xamarin Sample App/Calendar/Scheduling example 

Go to Year view, rotate the device in landscape mode, second + button is displayed inside the calendar title (year name)

Then rotate the device in portrait mode and go to day/multiday view,  
Rotate in landscape mode -> issue occurs. 

 

Unplanned
Last Updated: 07 Apr 2021 09:34 by ADMIN
Created by: Peter
Comments: 0
Category: Calendar & Scheduling
Type: Bug Report
0
There is a white space between the calendar grid lines and special slots

Unplanned
Last Updated: 26 Sep 2023 10:09 by ADMIN

appointments show wrong time in different time zones due to daylight time changes.

The issue can be reproduced in scenarios:

- For US time zone 14th of march: If I click an empty slot, I have a popup that tells the time that is clicked. I click on the 9 AM slot and it says I'm clicking on "10:00". This only happens on 3/14/2021

- For European countries time zone: on 28th or march 2021 when is the daylight saving time

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.
1 2 3 4 5