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

hide the splitter in the Scheduler

2 Answers 51 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
shlomo
Top achievements
Rank 1
shlomo asked on 28 Jul 2010, 09:07 AM
Hi
(sorry about my english)

i use the Scheduler and each appointment can by default to change the time by drag and drop or change the duration by drag the splitter. (in the butoom of the appointment)

hoe can i disable this two options.

10x

2 Answers, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 28 Jul 2010, 10:54 AM
Hello,


Canel the events OnClientAppointmentResizing and OnClientAppointmentMoving in order to prevent the resizing and appointment moving.

Client code:
<script type="text/javascript">
  
    function OnClientAppointmentResizing(Sender, args) {
        args.set_cancel(true);
    }
    function OnClientAppointmentMoving(Sender, args) {
        args.set_cancel(true);
    }
</script>



Thanks,
Princy.
0
shlomo
Top achievements
Rank 1
answered on 28 Jul 2010, 11:18 AM
Thanks
Tags
Scheduler
Asked by
shlomo
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
shlomo
Top achievements
Rank 1
Share this question
or