Click here to Skip to main content
15,886,199 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi all,
I am trying to call ajaxRequestWithTarget on a telerik radajaxpanel like this:
JavaScript
<%= radajaxpanel.ClientID %>.ajaxRequestWithTarget('<%= radajaxpanel.UniqueID %>', eventArgs.get_item().get_value() + '|' + ID + '|' + isDelete);                    

and getting this error:

Microsoft JScript runtime error: Unable to get value of the property 'ajaxRequestWithTarget': object is null or undefined

I tried to change the code to
JavaScript
var ajaxManager = $find("<%= RadAjaxManager1.ClientID %>");

ajaxManager.ajaxRequestWithTarget('<%= radajaxpanel.UniqueID %>', eventArgs.get_item().get_value() + '|' + ID + '|' + isDelete);

and Its working. But I want to use ajaxRequestWithTarget with ajaxPanel.

I am wondering if anyone came across this issue before. Thanks in advance.
Posted
Updated 19-Jul-12 19:57pm
v3

1 solution

I would suggest you to look details about ajaxRequestWithtarget here: Telerik Client side API[^]

If you have further doubts on the same, try here: Telerik Forum[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900