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

How to get selected dates in Monthview.

1 Answer 53 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Ashesh
Top achievements
Rank 1
Ashesh asked on 06 Jun 2013, 06:17 PM
I am trying to create a appointment in month view when i select multiple date and in TimeSlotContextMenuItemClicked function it only returns end date as next day. Can anyone help me with this please?

1 Answer, 1 is accepted

Sort by
0
Plamen
Telerik team
answered on 11 Jun 2013, 11:34 AM
Hello Ashesh,

 
This an already known bug in RadScheduler and we will make our best to fix it as soon as possible.
One possible workaround is to use the OnClientTimeSlotContextMenuItemClicking event and create a new appointment as for example it is being done from the client side in this on-line demo.

function OnClientTimeSlotContextMenuItemClicking(sender, args){
               
               var selectedStartTime = sender.get_selectedSlots()[0].get_startTime();
               var selectedEndTime = sender.get_selectedSlots()[sender.get_selectedSlots().length - 1].get_endTime();
 
           }


Hope this will explain the issue and be helpful.

Regards,
Plamen
Telerik
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to the blog feed now.
Tags
Scheduler
Asked by
Ashesh
Top achievements
Rank 1
Answers by
Plamen
Telerik team
Share this question
or