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?