1

I'm using RadScheduler control. I want to access the appointment click event using jQuery.

Like this:

$("#rs").click(function(e) {
    ShowDialog(true);
    e.preventDefault();
});

rs is my scheduler. I want when click on the appointment not the whole control (scheduler). How to do this?

4

1 回答 1

2

You'll can use Firebug or another debugger to inspect the control and determine which element you want to catch the click event of. And then adjust your jQuery to target that element instead of the outer element.

于 2011-03-17T12:13:31.613 回答