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.
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,
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.
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: 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: 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: 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: 13 May 2022 15:11 by ADMIN
ADMIN
Created by: Plamen
Comments: 1
Category: Scheduler
Type: Feature Request
0

			
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: 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: 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: 13 Mar 2015 06:05 by Tarun
Created by: Peter
Comments: 3
Category: Scheduler
Type: Feature Request
0
Hi Telerik

Full version number of the Telerik control or product being used: 2013.3.1324.45
Operating system details of your development machine/server: Win8.1 / Windows Server 2012 / Windows Server 2008 R2
Browser type and version number (where applicable): IE11 // FF
IDE Edition (Including Service Packs): VS 2013 / VS 2012 Update / SP 4
Preferred coding language: C#

Possible duplicate of this Declined issue:
http://feedback.telerik.com/Project/108/Feedback/Details/39250-fix-radscheduler-throws-specified-argument-was-out-of-the-range-of-valid-values


I run into exactly this problem in my application. if my users changes from dayview
to week or month views, depending on number of resources. I have not tested this
for the other horizontal grouping enabled views multiday and timeline.

Is it posible for a fix that reduces to a max value like 32767, 
when calculating or setting the table width.


part of my code:

RadScheduler1.ColumnWidth = new Unit(200, UnitType.Pixel); 
//Note will cause exception when many resources
//and Telerik.Web.UI.GroupingDirection.Horizontal
//The Unit class can represent values only between -32768 and 32767


Stack trace:

Specified argument was out of the range of valid values.
Parameter name: value



at System.Web.UI.WebControls.Unit..ctor(Double value, UnitType type)
   at Telerik.Web.UI.Scheduler.Views.SchedulerRenderer.SetContentTableWidth(Table contentTable)
   at Telerik.Web.UI.Scheduler.Views.SchedulerRenderer.AddHorizontalHeaders(SchedulerTopTable topTable)
   at Telerik.Web.UI.Scheduler.Views.Month.GroupedByResource.Renderer.GetInnerContent()
   at Telerik.Web.UI.Scheduler.Views.SchedulerRenderer.GetContent()
   at Telerik.Web.UI.RadScheduler.CreateContent()
   at Telerik.Web.UI.RadScheduler.CreateChildControls(Boolean bindFromDataSource)
   at Telerik.Web.UI.RadScheduler.CreateChildControls()
   at System.Web.UI.Control.EnsureChildControls()
   at System.Web.UI.Control.PreRenderRecursiveInternal()
   at System.Web.UI.Control.PreRenderRecursiveInternal()
   at System.Web.UI.Control.PreRenderRecursiveInternal()
   at System.Web.UI.Control.PreRenderRecursiveInternal()
   at System.Web.UI.Control.PreRenderRecursiveInternal()
   at System.Web.UI.Control.PreRenderRecursiveInternal()
   at System.Web.UI.Control.PreRenderRecursiveInternal()
   at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)



Regards

Peter
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.
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: 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: 01 Nov 2013 13:06 by Elena
ADMIN
Created by: Plamen
Comments: 1
Category: Scheduler
Type: Feature Request
1

			
Declined
Last Updated: 12 Jul 2016 14:49 by ADMIN
Created by: Robin
Comments: 2
Category: Scheduler
Type: Feature Request
0
In http://www.telerik.com/account/support-tickets/view-ticket.aspx?threadid=631805 Plamen indicated a feature request was created to implement CRUD via ODatabinding for the RadScheduler control but I can't find it. Currently it's read-only but we really would like to be able to maintain appointments as well via OData because we already have that API available in our product. This way we don't have to build\maintain a new web service.
Declined
Last Updated: 01 Jul 2015 13:23 by ADMIN
ADMIN
Created by: Plamen
Comments: 1
Category: Scheduler
Type: Feature Request
2

			
1 2