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
This doesn't work: apt.Description = DescriptionText.Text;
For our product we are using Telerik RadScheduler to display user calendar information, which we make extensive use of the Telerik.Web.UI.RecurrenceRule implementation. Additionally we are now integrating with Google Calendar to display and edit external events within our application. There have been several recurrence rules returned from Google that follow the iCalendar standard but RecurrenceRule has failed to parse correctly. Below are some examples of rules that have issues: 1. EXDATE value is ignored: DTSTART:20160405T120000Z DTEND:20160405T130000Z RRULE:FREQ=DAILY;INTERVAL=4;BYDAY=MO,TU,WE,TH,FR,SA,SU EXDATE;VALUE=DATE-TIME:20160413T120000Z 2. INTERVAL is ignored (interval of 1 is assigned when parsed by Telerik) DTSTART:20160404T120000Z DTEND:20160404T130000Z RRULE:FREQ=DAILY;COUNT=10;INTERVAL=4 3. Parse fails completely: DTSTART:20160404Z DTEND:20160405Z RRULE:FREQ=WEEKLY;UNTIL=20160509Z;BYDAY=MO;INTERVAL=1
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.
Review the attached sample. The timeline is split into 356 slots. When there is an appointment with start time out of business hours it is placed on two slots instead of one.