开发者

Access a component of a RadScheduler control using jQuery?

开发者 https://www.devze.com 2023-02-17 15:14 出处:网络
I\'m using RadScheduler control. I want to access the appointment click event using jQuery. Like this:

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 con开发者_StackOverflow社区trol (scheduler). How to do this?


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消