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.
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
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,
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.
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.
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.
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.
We are trying to Add Border for the current date in the RadScheduler using OnTimeSlotCreated event with the following code: e.TimeSlot.Control.Style.Add("border-left", "solid 1px !important"); e.TimeSlot.Control.Style.Add("border-right", "solid 1px !important"); e.TimeSlot.Control.Style.Add("border-right-color", "Red !important"); e.TimeSlot.Control.Style.Add("border-left-color", "Red !important"); This is causing a shift to the appointments , please see screenshot. Telerik Version: 2014.3.118.40, IE 9.0. Ccan you suggest if there is any other way to add border or we need to upgrade the controls to a newer version? Thanks, Rahul P.S I found similer unresolved issue at: http://www.telerik.com/forums/timeline-view-doesn-t-line-up-correctly
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.
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.
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 want to Use Kendo Scheduler in my MVC Application. But in that the Problem is with Scheduled task fetching. Because that is not on Server Side. I have also done Google, but still not getting any sugegstion on How to use Server Side Kendo Grid Currently I am refereing Kendo Scheduler from:: Kendo Scheduler Demo But that is on Client Side(i.e. it reads all the data from database). I want Server side Scheduler because of following reasons: If Database is having Millions of Schedule (i.e. Pervious Date + Current Date + Next Few months) then in that case I want the information of just `Current Months/Week/Day` for that I need Server side Kendo Scheduler.
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
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# In all my skins, the calendar dropdown has inline style that hides part of the day ranges, and navigation controls. i can however only replicate this issue on your demo site 6.february 2014, for the metrotouch skin, and the blackmetrotouch skin, see attached image. so i quess its fixed, and anyhow i made a css overide to temporary fix this for my production deployment However it looks like the appointments duration is not rendered correct, this was also the case in my last production deployment version 2013.611.45. i can replicate this issue on your demo site 6.february 2014, where i made an appointment from 08:00 to 12:00, see attached image. I tried in IE, FF, IOS, with same result. is it posible to get more exact time rendering, like in the other skins, because i in fact has some users who run my application on tablets. and the metro skins looks great and are easier to use on thoose devices. Regards Peter
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
telerik version 2012.2.607.35 scheduler appointment duration gets reduced on appointment being dragged and dropped from one apointment slot to another slot in mozilla fireox
Hello When you save the data by adding the beginning of the day 2 and day laborers booking on the booking end When you display the same process works, but counterproductive Please help Thank you