Completed
Last Updated: 18 Sep 2019 08:48 by ADMIN
Release R3 2019
Completed
Last Updated: 23 Jul 2019 05:09 by ADMIN
Release 2019.2.708 (R2 2019 minor release)
Created by: IanV
Comments: 3
Category: Calendar & Scheduling
Type: Bug Report
4

In Xamarin Forms.

 

When I call Calendar.ScrollAppointmentIntoView(theItem); in Android it works fine.

 

In iOS when the same call is made, the calendar scrolls about 1 pixel, then stops.

I put the call into a timer just to make sure it's there.

      Device.StartTimer(TimeSpan.FromMilliseconds(3000), () =>    

              { Device.BeginInvokeOnMainThread(() => {  Calendar.ScrollAppointmentIntoView(theItem); });             

                 return false; // True = Repeat again, False = Stop the timer    

      });

 

Completed
Last Updated: 15 Mar 2018 14:28 by ADMIN
Available in minor release 2018.1.0315. It will also be available in the R2 2018 release.
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.

Completed
Last Updated: 05 Feb 2020 13:29 by ADMIN
Release R1 2019 SP
Created by: IanV
Comments: 1
Category: Calendar & Scheduling
Type: Bug Report
3

Xamarin Forms, Newest everything

Out of the box, all Calendar views for iOS are in AM/PM

In Android the MultiDay is 24 hour, but the Day view is AM/PM

How can I force Android MultiDay to be AM/PM ?

 

 

Completed
Last Updated: 20 Mar 2020 13:18 by ADMIN
Release 2020.1.313 (R1 2020 minor release)
Created by: IanV
Comments: 0
Category: Calendar & Scheduling
Type: Bug Report
3
If you have an appointment with duration 15 min, it is not properly rendered in DayView/MultiDayView on Android - it is visualized as a 30 min appointment
Completed
Last Updated: 03 Jun 2019 14:39 by ADMIN
Release 2019.2.603.360 (R2 2019 minor release)

SelectionChanged starts calling twice when appointments collection is changed at runtime from within the event.

The problem occurs when I update the Events property on either of the events DisplayDateChanged or SelectionChanged. It seems these events are triggered another time, sometimes, when the AppointmentSource gets refreshed. I say sometimes because you can navigate through the weeks as normal, but as some points you notice something went wrong. Here’s a list of what I have encountered so far :
When sliding through the weeks from the days header, let’s say the selected day is a Monday, the next weeks would have the Monday selected as expected. Then a random week would have an other selected day (Friday). It would happen randomly until some weeks get skipped completely.
When sliding through the weeks from the days header, let’s say the selected day is a Monday, the next weeks would have the Monday selected as expected. If I touch the Friday box,  the selected date gets initially updated  to Friday and then a random day between Monday and Friday gets selected.
When sliding through the weeks from the days header, the calendar gets stucked on a random week, and sliding forward or backward through the days header just put you back to the same week. In this case the only way to move to the next/previous week is to slide through the time slot.

Completed
Last Updated: 19 Jun 2019 12:47 by ADMIN
Release R2 2019 SP1
The calendar does not scroll to the updated DisplayDate when MultiDayView is used and the DisplayDate is set in DisplayDateChanged event.
Completed
Last Updated: 18 Aug 2017 13:33 by Simba
Available in minor release 2017.2.0818. It will also be available in the R3 2017 release.
Completed
Last Updated: 26 Feb 2018 10:30 by ADMIN
Available in minor release 2017.3.927. It will also be available in the R3 2017 SP release.
Completed
Last Updated: 18 Oct 2018 11:46 by Антон
Created by: Антон
Comments: 0
Category: Calendar & Scheduling
Type: Bug Report
2
Hi!

I've tried your TKCalendar and it looks really good. But unfortunately, there is an issue on iOS(Xamarin). I set MaxDate = DateTime.Today and SelectionMode == Range. When I tap on date grater than today they don't selected, as expected. But when I select dates by drag gesture I can select every days in month.The worst thing is that it seems that there is no way to turn off drag selection on iOS in Range selection mode. I could provide you with any files if it's necessary. 

Available in the R3 2018 SP release.
Completed
Last Updated: 20 Jun 2018 14:13 by ADMIN
ADMIN
Created by: Stefan Nenchev
Comments: 0
Category: Calendar & Scheduling
Type: Bug Report
2
Available in the 2018 R2 SP release.
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: 05 Apr 2018 11:34 by ADMIN
Available in minor release 2018.1.405. It will also be available in the R2 2018 release.
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: 16 Dec 2019 12:34 by ADMIN
When RadCalendar is used in Xamarin.Forms Shell project, the vertical scrolling is not possible.
Completed
Last Updated: 19 Jun 2019 12:46 by ADMIN
Release R2 2019 SP1

If there is an all-day appointment at a certain date, navigating to a different date through the week navigation in DayView and going back to the previous date, it will not always show the all-day item.

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: 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: 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

1 2 3