Unplanned
Last Updated: 08 May 2020 11:13 by ADMIN

Hi 
I would like an extended feature to the iCal button that you get with RadScheduler which just deliver the one ical file type,
however it is typical on many event sites to offer alternative formats such as "[Google Outlook iCal Yahoo Apple]" because a user might be on an iPhone and so the text format might have the header information changed to make it natral for an iOS user, where as on an Android device making it natral to a google calendar would be a better fit.

It would be useful in the UserAgent was sniffed to offer a selection that is a natral fit of that environment.
An optional cookie could be left behind on that device to inform the control of the users preference so that is the head of the list.

This means that if Zoom or EventBrite used such a control (which they do) it would mean that your UI offers calendar events that connect to you, and so your UI is a little more sticky. 
Sure we can say that the iCal control would do, as many calender's can cope, we could also show the button offering all the major brands and just render exactly the same content then its user error if the appointment not saved.  But because Telerik is a leading UX brand, we don't want to know its an ical file we just want it to be a friction-less perfect fit into the users' calendar - they don't need to think it just gets done.

Thanks.
Doug

RE:
https://pages.jetbrains.com/dotnet-days-2020/web 
https://splashthat.com/ 
https://support.google.com/calendar/thread/3231927?hl=en

Unplanned
Last Updated: 16 Sep 2019 12:36 by ADMIN
Unplanned
Last Updated: 29 May 2020 15:47 by ADMIN
I'm working on a project where I use RadScheduler TimeLineView (Grouping by resource) and one of the requirements is that they need the appointments that share a single resource to appear on the same row, instead of the current behaviour where they show on multiple rows.
I believe adding that feature to the scheduler would give a lot of flexibility in such situations.
Thank you very much
Completed
Last Updated: 15 Oct 2020 17:57 by ADMIN
Created by: Rohit
Comments: 1
Category: Scheduler
Type: Feature Request
0
Please provide option in scheduler to freeze rows in randomly 
Unplanned
Last Updated: 30 Apr 2020 13:09 by ADMIN
Created by: Alla
Comments: 5
Category: Scheduler
Type: Feature Request
2
Please add holiday functionality to RadScheduler - for ASP.NET Ajax, similar like you did for WinForms. Thanks!
Completed
Last Updated: 15 Oct 2020 18:18 by ADMIN
Hi,
Please suggest me how can we show only working hour in timeline view in rad scheduler and hide non working hour. 

Currently in timeline view all 24 hour time slot is showing , but I want to show only working hour in time slot and hide rest of non working hour for there.

Screen shot for current view and desired view is attached below .
Unplanned
Last Updated: 29 May 2020 14:40 by ADMIN
The ASP.Net RadScheduler does not currently support recurring events in minute intervals (for example, every 15 minutes). Please add support for this. The feature would behave similarly to the feature in WinForms RadScheduler (Winforms RadScheduler does support minute interval recurring events). Thank you.
Unplanned
Last Updated: 31 Jan 2019 09:13 by Tanu
The RecurrenceRule does not have the correct Exceptions when modifying the series. The behavior in Outlook is to clear all exceptions when modifying the series. The behavior in Google Calendar is to consider the exception and modify the recurrence rule accordingly.

Create a recurrence appointment (starts on 20th Feb at 8:00 am, recurring daily), whose recurrence rule will be stored in the database as (Picture 1):

DTSTART:20180220T080000Z
DTEND:20180220T083000Z
RRULE:FREQ=DAILY;INTERVAL=1;BYDAY=MO,TU,WE,TH,FR,SA,SU

Further, I create an exception on 23rd Feb, which changes the start time to 8:15 am. This now, in Addition to inserting a new record for the exception, updates the master's recurrence rule to (Picture 2):

DTSTART:20180220T080000Z
DTEND:20180220T083000Z
RRULE:FREQ=DAILY;INTERVAL=1;BYDAY=MO,TU,WE,TH,FR,SA,SU
EXDATE:20180223T080000Z

So far, so good. Now I edit the master and change its start date to 19th Feb. I expect, that the master keeps the exception for 23rd, but the result is another one. The exception record is kept unchanged as expected! BUT the EXDATE in the master is wrong (Picture 3):

DTSTART:20180219T080000Z
DTEND:20180219T083000Z
RRULE:FREQ=DAILY;INTERVAL=1;BYDAY=MO,TU,WE,TH,FR,SA,SU
EXDATE:20180222T080000Z
Completed
Last Updated: 19 Jun 2020 16:06 by ADMIN
Created by: Tan
Comments: 1
Category: Scheduler
Type: Feature Request
3
I will be working on a project that need to show appointments for 20+ resources. I looked at your demos/documentation for the scheduler and don't see any support for horizontal scrolling.
I would be great to have the scheduler scroll the resources horizontally while maintaining the same width for each resource column.

Thanks for your time.
Declined
Last Updated: 06 Aug 2020 14:31 by ADMIN
Something prevents the timeslotcreated event from firing when the advanced form is shown and therefore all the customizations that are done within timeslotcreated event are not in effect until advanced form is closed.  For example you can see different background color/image on January 1st on the attached "Capture1.png" picture, but as soon as I open the advanced form, for create/edit, those css settings are gone (see attached "Capture2.png" picture) until I close the form.

You would think that this is a pretty big bug that needs to be resolved.

Thanks.
Unplanned
Last Updated: 07 Jan 2021 15:27 by ADMIN
Created by: Andreas
Comments: 0
Category: Scheduler
Type: Feature Request
1
When working with All-day appointments, it would be really nice to be able to resize them in the week view.

In some cases when only working with All-day appointments, we were able to hide the time part of the Scheduler control entirely, but in this case the week view is almost pointless since our end users want to resize appointments a lot!
Declined
Last Updated: 27 May 2021 08:53 by ADMIN
Created by: Mauro
Comments: 1
Category: Scheduler
Type: Feature Request
1
In a RadScheduler with a custom provider (inheriting from SchedulerProviderBase), there is no way to get "expanded" appointments (i.e. masters plus occurrences minus exceptions). 

I devised a solution (as suggested in http://www.telerik.com/forums/scheduler-exporting-a-range-of-appointments), using the Occurrences property of RecurrenceRule:

        public IEnumerable<Appointment> GetExpandedAppointments(RadScheduler owner, DateTime start, DateTime end)
        {
            var result = new List<Appointment>();

            foreach (Appointment a in this.GetAppointments(owner))
            {
                // see http://www.telerik.com/forums/scheduler-exporting-a-range-of-appointments
                if (a.RecurrenceState == RecurrenceState.Master)
                {
                    RecurrenceRule parsedRule;
                    RecurrenceRule.TryParse(a.RecurrenceRule, out parsedRule);
                    parsedRule.SetEffectiveRange(start, end);

                    int nc = 0;
                    foreach (DateTime occurrence in parsedRule.Occurrences)
                    {
                        Appointment app = a.Clone();
                        app.ID = a.ID + "_" + ++nc;
                        app.Start = occurrence;
                        app.End = occurrence.Add(a.Duration);
                        app.RecurrenceRule = null;
                        app.RecurrenceParentID = a.ID;
                        app.RecurrenceState = RecurrenceState.Occurrence;
                        result.Add(app);
                    }
                }
                else if (a.RecurrenceState != RecurrenceState.Occurrence)
                {
                    result.Add(a);
                }
            }

            return result;
        }
    }

I think this functionality can be part of SchedulerProviderBase, there is no custom logic.

Thanks

Regards

Mauro
Declined
Last Updated: 27 May 2021 09:02 by ADMIN
Created by: Tejas
Comments: 1
Category: Scheduler
Type: Feature Request
0
Dear Sir,

I used telerik:RadScheduler with Exchange Scheduler Provider.
I am successfully connected to Exchange server and also I able to display data on scheduler form exchange

But problem is how can i refresh scheduler data real time?

My requirement is if meeting cancel or new Meeting at the same time scheduler update the information on display.
Below code ios for your reference.
ExchangeSchedulerProvider provider1 =
      new ExchangeSchedulerProvider(@"https://owa.xyz.com/EWS/Exchange.asmx", "user name", "Password", "Domain", "tejas_k_lodha@milacron.com");
Thanks,
Unplanned
Last Updated: 28 May 2021 17:29 by ADMIN
Created by: Mandar
Comments: 0
Category: Scheduler
Type: Feature Request
0
VisibleAppointmentsPerDay property is not visible for ASP.NET AJAX RadScheduler Weeklyview, I need it for Weeklyview, 

this is present in MonthView of Radscheduler

I need to show the more link for weekly view  view if a certain limit is reached for number of appointments for a day of the week


Regards

Mandar




Unplanned
Last Updated: 23 Aug 2019 09:49 by ADMIN
Created by: Neil Green
Comments: 1
Category: Scheduler
Type: Feature Request
2
To have a HeaderCreated option for the RadScheduler to allow you to customise the header in timeline view.
Unplanned
Last Updated: 09 Jun 2016 15:29 by ADMIN
Completed
Last Updated: 26 May 2021 20:27 by ADMIN
Created by: Asim
Comments: 1
Category: Scheduler
Type: Feature Request
1
I would like to strongly suggest you considering some sort of workflow capability available. My application provides solutions where tasks (Individual and concurrent) are spawned and we have to track the requests, users, and integration with underlying applications. This is all done manually or custom coded. 

If there was a way to have out of the box workflow capability, that would make the life so much easier. Having drag and drop features to create workflow diagram, use the rad screens to create forms, and integrate with underlying applications.

Please let me know if a workflow engine is in the roadmap ?
Unplanned
Last Updated: 09 Mar 2016 09:51 by ADMIN
Review the attached sample. The timeline is split into 356 slots. When there is an appointment with start time out of business hours it is placed on two slots instead of one. 
1 2 3 4 5