Declined
Last Updated: 13 May 2022 15:11 by ADMIN
ADMIN
Created by: Plamen
Comments: 1
Category: Scheduler
Type: Feature Request
0

			
Declined
Last Updated: 02 Mar 2022 11:37 by ADMIN
Created by: Ben
Comments: 1
Category: Scheduler
Type: Feature Request
0
There is an OnClientTimeSlotClick event that fires if the user clicks in a single time slot.

If the user clicks in one time slot and drags to select multiple time slots before releasing the mouse button no event is fired.

It would be useful if the existing event was fired in this case, or another event was added to fire in this case.
Declined
Last Updated: 16 Jun 2021 08:10 by ADMIN
We'd like to control how simultaneous appointments are displayed. It would be nice if the appointments are shown above eachother, as it were layers with transparancy.

If that's not possible than we'd like to control the placing of the appointments. For example the appointments in order of priority from left to right.
Won't Fix
Last Updated: 16 Jun 2021 08:09 by ADMIN
Created by: Henk
Comments: 1
Category: Scheduler
Type: Feature Request
1

			
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.
Unplanned
Last Updated: 10 Jun 2021 18:11 by ADMIN
Declined
Last Updated: 31 May 2021 14:32 by ADMIN
When calling Telerik.Web.UI.RecurrenceRule.TryParse and it returns false - there is no way to know what is actually wrong with the rule to parse.

Perhaps a Parse( ) method is also provided that will throw an exception with details of what is wrong with the specified string recurrence rule.
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: 28 May 2021 14:41 by ADMIN
Feature Request: Add the ability to RadScheduler to set start and end time for each day-of-week and off days for a week, month, year. 

Serverside and Clientside.
Unplanned
Last Updated: 28 May 2021 14:39 by ADMIN
When the start date of a series is changed, the exceptions from the series (like when deleting an occurrence) are moved along with the series. This is not always the expected behavior, because in some cases the exceptions should stay in place (because they are holidays for example). It is also an issue because the users don't understand why some exceptions have disappeared, or why other exceptions have appeared.
I would suggest that the end user be presented with an option to: keep the exceptions in place, move the exceptions or delete the exceptions (like Outlook does) when he changes the start date.
If the exceptions should be handled the same way always, the developer could specify the handling way, and then the user would not be alerted.
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 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,
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
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 ?
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.


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!
Completed
Last Updated: 04 Dec 2020 10:39 by ADMIN
Created by: ian
Comments: 1
Category: Scheduler
Type: Feature Request
1

			
Unplanned
Last Updated: 17 Oct 2020 16:08 by Doug
ADMIN
Created by: Plamen
Comments: 3
Category: Scheduler
Type: Feature Request
6

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