This is a migrated thread and some comments may be shown as answers.

MinutesPerRow

2 Answers 46 Views
Scheduler and Reminder
This is a migrated thread and some comments may be shown as answers.
thomas
Top achievements
Rank 1
thomas asked on 13 Mar 2011, 05:02 PM
I am evaluating this control for a project and we need to be able to have the scheduler devided in 30 minuttes. You have this functionality in the ajax version (MinutesPerRow), is this functionality not available for the win forms version?

Best R, Thomas

2 Answers, 1 is accepted

Sort by
0
Martin Gartmann
Top achievements
Rank 2
answered on 15 Mar 2011, 09:11 AM
Hi Thomas,

check the scheduler.GetDayView.RangeFactor for this.

i use a dropdown in my winform to switch between hour/halfhour/quarterhour per row

FiveMinutes/SixMinutes/TenMinutes are also predifined values

Private Sub rddScale_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As Telerik.WinControls.UI.Data.PositionChangedEventArgs) Handles rddScale.SelectedIndexChanged
       Select Case rddScale.SelectedIndex
           Case 0
               Me.rsMain.GetDayView.RangeFactor = ScaleRange.Hour
           Case 1
               Me.rsMain.GetDayView.RangeFactor = ScaleRange.HalfHour
           Case 2
               Me.rsMain.GetDayView.RangeFactor = ScaleRange.QuarterHour
       End Select
   End Sub


Hope this helps

Kind regards

Martin Gartmann
0
Dobry Zranchev
Telerik team
answered on 16 Mar 2011, 08:25 AM
Hi,

@Martin, thank you for the answer. You Telerik points are updated for the community efforts.

@Thomas, Martin's answer is the correct one. In case that you have other questions, feel free to write back.

Best wishes,
Dobry Zranchev
the Telerik team
Registration for Q1 2011 What’s New Webinar Week is now open. Mark your calendar for the week starting March 21st and book your seat for a walk through all the exciting stuff we ship with the new release!
Tags
Scheduler and Reminder
Asked by
thomas
Top achievements
Rank 1
Answers by
Martin Gartmann
Top achievements
Rank 2
Dobry Zranchev
Telerik team
Share this question
or