7 Answers, 1 is accepted
0
Hello Alberto,
Thank you for writing.
We tested and successfully reproduced issues with RadScheduler and short appointments. These issues will be corrected in the upcoming Q1 2009 release of RadControls for WinForms (due at the end of February).
Kind regards,
Jordan
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Thank you for writing.
We tested and successfully reproduced issues with RadScheduler and short appointments. These issues will be corrected in the upcoming Q1 2009 release of RadControls for WinForms (due at the end of February).
Kind regards,
Jordan
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0

kultman
Top achievements
Rank 2
answered on 13 Feb 2009, 07:29 PM
Had the same problem. I set the time ruler scale to ½ hours and the appointments were shown. Can't seem to set the ruler scale programmatically anywhere tho.
0
Hello kultman,
You can set the ruler scale for a day view by setting the RangeFactor property like bellow:
This property is not available on the base class, because it is not valid for some views like for example month view. That is why you must use a concrete view type that supports this.
I hope this helps.
Greetings,
Jordan
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
You can set the ruler scale for a day view by setting the RangeFactor property like bellow:
SchedulerDayView view = this.radScheduler1.GetDayView(); |
if (view != null) |
{ |
view.RangeFactor = ScaleRange.HalfHour; |
} |
This property is not available on the base class, because it is not valid for some views like for example month view. That is why you must use a concrete view type that supports this.
I hope this helps.
Greetings,
Jordan
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
0

kultman
Top achievements
Rank 2
answered on 16 Feb 2009, 06:19 PM
Thanks!!
I was able to set the DayCount to 1 also. My next problem is to only show times between 7 AM and 6 PM. How do I do that then?
I was able to set the DayCount to 1 also. My next problem is to only show times between 7 AM and 6 PM. How do I do that then?
0
Hello kultman,
With the latest version of RadControls for WinForms (Q3 2008 SP2) you can do that in the following way:
Hope this helps. Do not hesitate to contact me back if you have further questions.
Regards,
Jordan
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
With the latest version of RadControls for WinForms (Q3 2008 SP2) you can do that in the following way:
SchedulerDayView dayView = this.radScheduler1.GetDayView(); |
dayView.RulerStartScale = 7; |
dayView.RulerEndScale = 18; |
Hope this helps. Do not hesitate to contact me back if you have further questions.
Regards,
Jordan
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
0

kultman
Top achievements
Rank 2
answered on 25 Feb 2009, 12:27 AM
I downloaded and installed Q3 2008 SP2 (not uninstalling SP1). It still doesn't work with the
I tested the .ProductVersion of the control after installing SP2 to 8.1.0.0
Is my problem ralated to the SP2 upgrade or does the code not work?
Best regards
/Dan
dayView.RulerStartScale = 7 |
dayView.RulerEndScale = 18 |
I tested the .ProductVersion of the control after installing SP2 to 8.1.0.0
Is my problem ralated to the SP2 upgrade or does the code not work?
Best regards
/Dan
0
Hi Dan,
The version of the Q3 2008 SP2 assemblies is 8.2.0.0. I would suggest that you uninstall all instances of RadControls for WinForms and reinstall Q3 2008 SP2.
If that does not work, it will be best if you open a new support ticket and send us a sample project that demonstrates the issue. This will allow us to identify and address it.
Regards,
Jordan
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
The version of the Q3 2008 SP2 assemblies is 8.2.0.0. I would suggest that you uninstall all instances of RadControls for WinForms and reinstall Q3 2008 SP2.
If that does not work, it will be best if you open a new support ticket and send us a sample project that demonstrates the issue. This will allow us to identify and address it.
Regards,
Jordan
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.