Hi,
I'm experiencing a strange issue with a RadAjaxManager and chrome (IE10 work fine) :
I've defined my RadAjaxManager like this :
And I call a javascript function to refresh my control "GalopRadGrid" :
When calling my function, I get the following error :
Uncaught TypeError: Cannot read property 'caller' of undefined
I use a RadAjaxManager in the same way in other pages and I don't get any problem. Does any one got a idea to solve this trouble ?
Thanks,
Corentin
I'm experiencing a strange issue with a RadAjaxManager and chrome (IE10 work fine) :
I've defined my RadAjaxManager like this :
<telerik:RadAjaxManager ID="PageRadAjaxManager" runat="server" OnAjaxRequest="PageRadAjaxManager_AjaxRequest"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="PageRadAjaxManager"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="GalopRadGrid"LoadingPanelID="PageRadAjaxLoadingPanel" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings></telerik:RadAjaxManager>And I call a javascript function to refresh my control "GalopRadGrid" :
function DoRefreshGalopGrid() { var arguments = 'RefreshGalopGrid'; var ajaxManager = $find("<%=PageRadAjaxManager.ClientID%>"); ajaxManager.ajaxRequest(arguments);}When calling my function, I get the following error :
Uncaught TypeError: Cannot read property 'caller' of undefined
I use a RadAjaxManager in the same way in other pages and I don't get any problem. Does any one got a idea to solve this trouble ?
Thanks,
Corentin