How do i get the id of the appointment in the event handler for the OnClientAppointmentClick event. Please note that I am talking about the single click event.
1 Answer, 1 is accepted
0
Peter
Telerik team
answered on 23 Jan 2009, 12:26 PM
The following should work:
<script type="text/javascript">
function OnClientAppointmentClick(sender, eventArgs)
{
alert(eventArgs.get_appointment().get_id());
}
</script>
All the best,
Peter
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.