Declined
Last Updated: 16 Apr 2020 08:30 by ADMIN
Functionality requested by a prestigious customer (AIRBUS).
Declined
Last Updated: 01 Nov 2013 13:06 by Elena
Created by: Gal
Comments: 1
Category: Scheduler
Type: Feature Request
4
I will be very helpful to have a Gantt view to the scheduler with a Grided info on one side and the  Gantt on the other. 
Declined
Last Updated: 26 Jul 2016 12:35 by ADMIN
ADMIN
Created by: Peter
Comments: 1
Category: Scheduler
Type: Feature Request
4

			
Declined
Last Updated: 21 Sep 2018 13:19 by Mark
Created by: Tarek
Comments: 2
Category: Scheduler
Type: Feature Request
3
Reminders popup outside the page that the scheduler is used.
Because re-adding the same scheduler in many pages is very bandwidth consuming so what about creating a minified scheduler control for reminders so the user will be reminded in all pages about events.
Declined
Last Updated: 01 Jul 2015 13:23 by ADMIN
ADMIN
Created by: Plamen
Comments: 1
Category: Scheduler
Type: Feature Request
2

			
Declined
Last Updated: 26 Jul 2016 12:01 by ADMIN
ADMIN
Created by: Ivan Zhekov
Comments: 1
Category: Scheduler
Type: Feature Request
2
Having the ability to customize the scheduler toolbar (or header) via template will increase its flexibility. In addition it will allow for rendering improvements while maintaining backward compatibility via the templates.

While it may seem like a straightforward task, it requires at least:

* extracting toolbar commands to be callable from client code
* the ability to iterate trough the currently viewable views to set the buttons (to match the userselectable property)
* per button setting ala ListBox button settings
Declined
Last Updated: 14 Jun 2021 13:13 by ADMIN
Created by: Minculescu
Comments: 1
Category: Scheduler
Type: Feature Request
2
When setting ResourceMarkerType to "Bar" or "Block" on the AgendaView mode of the Scheduler, it would be useful if the marker would show the background and border colors that were specified in the ResourceStyleMapping section of the scheduler.
As it is now, it only takes the css class that was assigned to the resource type.
In our application the user can specify any color for each resource type using a colorpicker.
Declined
Last Updated: 01 Nov 2013 13:06 by Elena
Created by: Legis
Comments: 1
Category: Scheduler
Type: Bug Report
1
I'm using RadScheduler in a page that is called with a script "windows.open" but does not pop up. As is shown in IE6 or IE7 displays correctly but when running in IE9 is very compressed cells. In this control only use the view of "time-line" because I am trying to show the availability of people going to invite a date. Can you help me with this bug?
Declined
Last Updated: 26 Jan 2016 14:51 by ADMIN
ADMIN
Created by: Boyan Dimitrov
Comments: 0
Category: Scheduler
Type: Bug Report
1

			
Declined
Last Updated: 01 Nov 2013 13:06 by Elena
ADMIN
Created by: Plamen
Comments: 1
Category: Scheduler
Type: Feature Request
1

			
Declined
Last Updated: 01 Nov 2013 13:06 by Elena
Created by: CH
Comments: 1
Category: Scheduler
Type: Feature Request
1
Extend RADScheduler not just to creating appointment. Extend it to be timelogging\time clocking feature where user can use RADScheduler to perform timelogging\clocking. 
Also allows copy and paste from 1 day to another day. 
Declined
Last Updated: 22 Dec 2016 11:40 by Tejas
Created by: Peter
Comments: 2
Category: Scheduler
Type: Feature Request
1
Hello

It would be good to have the calendars grouped vertically and to have the time displayed horizontally. Please see attached screenshot

Regards
Peter
Declined
Last Updated: 29 Jul 2016 12:36 by ADMIN
Created by: João
Comments: 1
Category: Scheduler
Type: Feature Request
1
I'm using RadScheduler with TimelineView, i have ExactTimeRendering and it shows the appointments clear.
Since i have the slots with 12hours, i want to adjust an extra hour, but when i resize it always adjust an extra 12hours. 
 
Would be very helpfull to had a property to allow exactappointment drag, so i can resize 1 extra hour instead of 12. Something similar like in radgrid, when resize columns it shows me how much pixels, in this case i want it to show the time.
Declined
Last Updated: 26 May 2021 20:17 by ADMIN
Created by: David
Comments: 1
Category: Scheduler
Type: Feature Request
1
Currently the RadScheduler is capable of binding to a web service, as described at http://docs.telerik.com/devtools/aspnet-ajax/controls/scheduler/web-service-binding/overview. This functionality requires the creation of a web service and custom provider classes.

Please create an option to bind directly to the Sharepoint Lists.asmx web service with client side mark-up identifying the calender and the view to be displayed.

This will require authenticaiton either by pass-through, anonymous user account, or a specified service account.


Declined
Last Updated: 28 May 2021 14:36 by ADMIN
Created by: Michael Rogers
Comments: 1
Category: Scheduler
Type: Feature Request
1
The managed API has been out for a couple years now and is accepted as the way to use EWS vs the proxy class now.
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: 01 Jul 2015 14:00 by ADMIN
1 2