This seems like a pretty basic need to not show this column. In my case the time is not needed and showing it clutters the view and adds confusion for teh end user making it so I really can't use it in these types of situations. Here is a Forum thread on the topic. http://www.telerik.com/community/forums/aspnet-ajax/scheduler/remove-time-column.aspx Thanks
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
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
Scheduler component has feature "Export to PDF". When PDF is generated, there is image inside. But quality of this image is really poor. Based on source code, there is method in SchedulerExporter.cs private void ConvertBitmapToJpeg(Bitmap bmp) { var ms = new MemoryStream(); bmp.Save(ms, ImageFormat.Jpeg); _gifArray.Add(ms.ToArray()); } But there is no encoder settings parameter used (http://msdn.microsoft.com/en-us/library/system.drawing.bitmap.save(v=vs.110).aspx). Please add a possibility to control output image quality.
Please add a support for YearlyRecurrenceRule class, where user can set the year intervals. (for e.g. Every 2 years on 12th February). Please check the attachment.