Hi, I want to find control i.e. place inside AppointmentTemplate OnClientAppointmentClick event in Javascript. I've searched for many forums but didn't find anything related to javascript findcontrol.
Thanks in Advance,
Mangesh
2 Answers, 1 is accepted
0
Boyan Dimitrov
Telerik team
answered on 10 Sep 2012, 10:00 AM
Hello Mangesh,
I believe the approach below will be helpful in your case:
// JavaScript
function OnClientAppointmentClick(sender, eventArgs)
{
var customControlID = $find("<%= CustomControlID.ClientID %>");
You can use it to access different controls on your page and their properties and functions.
Regards,
Boyan Dimitrov
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.