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

[Solved] drag and drop the appointment

1 Answer 120 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Nagesh Mynedi
Top achievements
Rank 1
Nagesh Mynedi asked on 13 Jan 2010, 09:22 AM
for example my appointment slot is  9 to 10 when i drag that appointment to 2 to 3 how can i capture that appointment time 2 to 3 .....

in which event
 i can capture..that time ... 

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 13 Jan 2010, 02:29 PM
Hello Nagesh,

Attach 'OnClientAppointmentMoveEnd' client event to RadScheduler and access the new start time using the get_newStartTime() method.

javascript:
 
    function OnClientAppointmentMoveEnd(sender, eventArgs) { 
        alert("New start time: " + eventArgs.get_newStartTime()); 
    } 

You can retrieve the appointment and get the appointment time and then it is possible to calculate the end time.

-Shinu.
Tags
Scheduler
Asked by
Nagesh Mynedi
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or