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

[Solved] Scheduler Configuration

1 Answer 157 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
yossi
Top achievements
Rank 1
yossi asked on 19 Mar 2008, 11:21 AM
Hello,

2 questions please :

1) How do i configure the scheduler to place appointments for half an hour,
    example : from 12:00 to 12:30.

    does the scheduler allow to work only with "complete hours"?

2) Do i have the ability to configure the AdvancedFrom,i mean for example:

    hiding the "All Day Event" CheckBox ?

thank you.

1 Answer, 1 is accepted

Sort by
0
Peter
Telerik team
answered on 19 Mar 2008, 02:59 PM
Hi yossi,

1. You can use the the following approach:
 protected void RadScheduler1_AppointmentInsert(object sender, SchedulerCancelEventArgs e)  
    {  
        e.Appointment.End = e.Appointment.Start.Add(new TimeSpan(0, 30, 0));  
    } 

2. The advanced form can be customized using the AdvancedInsertTemplate and AdvancedEditTemplate as shown in the Templates online example. However, if you just need to hide the "All Day Event" CheckBox, you can use the following css rule:
.rsAdvCheckboxWrapper  
    {  
        visibilityhidden !important;          
    } 

Don't hesitate to contact us if you have any other questions.


All the best,
Peter
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
Tags
Scheduler
Asked by
yossi
Top achievements
Rank 1
Answers by
Peter
Telerik team
Share this question
or