Functionality requested by a prestigious customer (AIRBUS).
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.
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.
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
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.
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?
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.
Hello It would be good to have the calendars grouped vertically and to have the time displayed horizontally. Please see attached screenshot Regards Peter
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.
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.
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.
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