Hi, I'm evaluating the RadScheduler for a project at the moment and it looks pretty good, but I need to display multiple day views (same day, different people) side by side and hide the headers.
Although the documentation is a bit sparse, I would have thought that the ShowDayHeaders, or ShowHeader on the active view would have controlled this, but it doesn't appear to work. Any hints as to how to achieve this?
| Dim sched As New RadScheduler |
| sched.BackColor = System.Drawing.Color.White |
| sched.DataSource = Nothing |
| sched.Dock = System.Windows.Forms.DockStyle.Left |
| sched.HighlightToday = True |
| sched.Location = New System.Drawing.Point(0, 0) |
| sched.Name = "RadScheduler1" |
| sched.Size = New System.Drawing.Size(200, 560) |
| sched.TabIndex = 0 |
| sched.Text = "RadScheduler1" |
| sched.AllowDrop = True |
| Me.pnlSchedule.Controls.Add(sched) |
| Dim view As Telerik.WinControls.UI.SchedulerDayView |
| view = TryCast(sched.ActiveView, Telerik.WinControls.UI.SchedulerDayView) |
| If view IsNot Nothing Then |
| view.StartDate = DateTime.Today |
| view.DayCount = 1 |
| view.ShowAllDayArea = False |
| view.ShowDayHeaders = False |
| view.ShowHeader = False |
| End If |
I'm also trying to find a way to limit the displayed time range for the day, so it limits the view to WorkTime or a VisibleTime property?
One last question. I'll by trying to implement drag/drop between two+ schedule controls, I haven't started developing this yet, but I suspect that there is no underlying support for this, but it would be nice to know if it is achievable before I start playing in this area?