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

Booking system health

4 Answers 66 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Marco
Top achievements
Rank 1
Marco asked on 10 Sep 2014, 07:43 AM
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.

4 Answers, 1 is accepted

Sort by
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
Boyan Dimitrov
Telerik team
answered on 12 Sep 2014, 03:03 PM
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
<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?
0
Boyan Dimitrov
Telerik team
answered on 27 Sep 2014, 06:28 PM
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
 

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.

 
Tags
Scheduler
Asked by
Marco
Top achievements
Rank 1
Answers by
Marco
Top achievements
Rank 1
Boyan Dimitrov
Telerik team
Share this question
or