Hi,
i started to develop a booking system health for Italy MarketPlace. According to doctor's agenda, i've to display only some days in a week (the days configurated in the diary configuration), in addition to i've to use different interval (calling section) between morning and afternoon, i.e. i've to display an appointment 20 minutes length in the morning and an appointment 30 minutes length in the afternoon.
Could It's possible to do tthis using RadScheduler??
Sorry in advance for my poor English.
i started to develop a booking system health for Italy MarketPlace. According to doctor's agenda, i've to display only some days in a week (the days configurated in the diary configuration), in addition to i've to use different interval (calling section) between morning and afternoon, i.e. i've to display an appointment 20 minutes length in the morning and an appointment 30 minutes length in the afternoon.
Could It's possible to do tthis using RadScheduler??
Sorry in advance for my poor English.
4 Answers, 1 is accepted
0

Marco
Top achievements
Rank 1
answered on 10 Sep 2014, 08:07 AM
Just another question. Is it possible to enable only week view of RadScheduler?
0
Accepted
Hello,
Thank you for contacting Telerik Support.
Straight to your questions:
1. In order to avoid showing some of the week days in the RadScheduler week view you can use the RadScheduler FirstDayOfWeek and LastDayOfWeek properties. For example if you want to hide Saturday and Sunday you can use the following RadScheduler configuration:
//markup code
Please note that hiding a single day in the middle of the week (only Wednesday for example) is not supported scenario.
2. You can simply schedule the appointments with 20 minutes or 30 minutes duration. Using the EnableExactTimeRendering="true".Exact Time Rendering increases readability of the scheduled appointment's sequence by rendering it at its exact Start and End time corresponding with the time slots around. Please review the demo for more information.
3.In order to show only the week view you can use the following configuration:
//markup code
Regards,
Boyan Dimitrov
Telerik
Thank you for contacting Telerik Support.
Straight to your questions:
1. In order to avoid showing some of the week days in the RadScheduler week view you can use the RadScheduler FirstDayOfWeek and LastDayOfWeek properties. For example if you want to hide Saturday and Sunday you can use the following RadScheduler configuration:
//markup code
<
telerik:RadScheduler
runat
=
"server"
ID
=
"RadScheduler1"
FirstDayOfWeek
=
"Monday"
LastDayOfWeek
=
"Friday"
>
</
telerik:RadScheduler
>
Please note that hiding a single day in the middle of the week (only Wednesday for example) is not supported scenario.
2. You can simply schedule the appointments with 20 minutes or 30 minutes duration. Using the EnableExactTimeRendering="true".Exact Time Rendering increases readability of the scheduled appointment's sequence by rendering it at its exact Start and End time corresponding with the time slots around. Please review the demo for more information.
3.In order to show only the week view you can use the following configuration:
//markup code
<
telerik:RadScheduler
runat
=
"server"
ID
=
"RadScheduler1"
>
<
DayView
UserSelectable
=
"false"
/>
<
MonthView
UserSelectable
=
"false"
/>
<
TimelineView
UserSelectable
=
"false"
/>
</
telerik:RadScheduler
>
Regards,
Boyan Dimitrov
Telerik
Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.
0

Marco
Top achievements
Rank 1
answered on 24 Sep 2014, 07:18 AM
Dear Boyan Dimitrov,
thanks for reply. Just another question, Can I lock cells and entire day in a week mode view?
thanks for reply. Just another question, Can I lock cells and entire day in a week mode view?
0
Hello,
Please review our Customizing Time Slots demo that demonstrates how you can disable certain time slots so the user will not be able to add appointments.
Regards,
Boyan Dimitrov
Telerik
Please review our Customizing Time Slots demo that demonstrates how you can disable certain time slots so the user will not be able to add appointments.
Regards,
Boyan Dimitrov
Telerik
Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.