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

Cusomize RadScheduler functionality?

1 Answer 44 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Mk
Top achievements
Rank 1
Mk asked on 27 Nov 2012, 10:19 AM
I am using RadScheduler.Here is Demo http://demos.telerik.com/aspnet-ajax/scheduler/examples/contextmenu/defaultcs.aspx. Its working fine. i want to customize it. I want to show event on popup menu when click on "more" button.How can i prevent go to day calander when click on more button and get the date by jquery of that where "more" button clicked.
Thanks.

1 Answer, 1 is accepted

Sort by
0
Plamen
Telerik team
answered on 30 Nov 2012, 07:58 AM
Hello Mk,

 
Here is one way to achieve this with jQuery:

function pageLoad() {
                $telerik.$(".rsShowMore").click(function (e) {
                    var scheduelr = $find('<%=RadScheduler1.ClientID%>');
                    alert(scheduelr.get_activeModel().getTimeSlotFromDomElement(e.target).get_startTime());
                    return false;
                });
            }

Hope this will be helpful.

Regards,
Plamen
the Telerik team
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 their blog feed now.
Tags
Scheduler
Asked by
Mk
Top achievements
Rank 1
Answers by
Plamen
Telerik team
Share this question
or