Hi all,
I am trying to call ajaxRequestWithTarget on a telerik radajaxpanel like this:
Microsoft JScript runtime error: Unable to get value of the property 'ajaxRequestWithTarget': object is null or undefined
I tried to change the code to
and Its working. But I want to use ajaxRequestWithTarget with ajaxPanel.
I am wondering if anyone came across this issue before. Thanks in advance.
I am trying to call ajaxRequestWithTarget on a telerik radajaxpanel like this:
Collapse | Copy Code
<%= 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
Collapse | Copy Code
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.