Unplanned
Last Updated: 24 Jan 2022 08:26 by ADMIN
Created by: Jiri
Comments: 3
Category: Calendar & Scheduling
Type: Feature Request
0
In languages with noun declension like czech correct form is "leden 2022", displayed is "ledna 2022"
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.
Unplanned
Last Updated: 02 Jul 2021 13:37 by ADMIN
Created by: rajesh
Comments: 0
Category: Calendar & Scheduling
Type: Feature Request
1
Appointment reminder to notify the user when scheduled time reaches.
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: 21 May 2021 14:20 by ADMIN
RadCalendar provides ScrollAppointmentIntoView and ScrollTImeIntoView for DayView and MultiDayView modes, we should provide these methods for AgendaView as well.
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: 19 Mar 2021 16:00 by ADMIN
Created by: Jelle
Comments: 0
Category: Calendar & Scheduling
Type: Feature Request
1

While in DayView (or any other appropriate view), allow changing the start/end time of the appointment when you drag the edges.

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

Unplanned
Last Updated: 23 Feb 2021 08:07 by ADMIN
Created by: Mehdi
Comments: 0
Category: Calendar & Scheduling
Type: Feature Request
1

Provide a way to highlight or identify the days with appointments in the year view mode. When in year view mode, those days with appointments, have different color for example.

Currently, just today is highlighted.

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

 

Unplanned
Last Updated: 05 Jan 2021 11:27 by ADMIN

Dear sir/madam,

Following a forum post discussion regarding the RadCalendar's time format in Day/MultiDay view modes, it has been said that its time format is set based on the device's settings, and is not changeable by the developer. So, please add this feature so that the developer can at least set the RadCalendar's time format to either 24 or 12-Hour formats, not only in Day/MultiDay view modes but on any view mode.

Many thanks in advance

Unplanned
Last Updated: 16 Dec 2020 17:39 by ADMIN
Created by: Evan
Comments: 0
Category: Calendar & Scheduling
Type: Bug Report
0
When there are all-day appointments in the Calendar in DayView/MultiDayView,  after the device/emulator is rotated to a different orientation, the all day event are not resized in response to the wider/narrower day "column."
Unplanned
Last Updated: 15 Dec 2020 15:56 by ADMIN
All-day area is misaligned when the device/emulator is rotated to a different orientation.
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.