I am, on occasion (around 40% of the time), getting the following javascript error:
Uncaught TypeError: Cannot call method 'removeChild' of null - Telerik.WebUI.WebResource.axd:2897 My code has successfully completed an ajaxRequest to server side code:
All actions appear to have completed correctly, however the loading panel is still showing (I'm using the default panel). It would appear that the LoadingPanel handlers are halting at the error and failing to remove the loadingpanels?
Thanks
R.
Uncaught TypeError: Cannot call method 'removeChild' of null - Telerik.WebUI.WebResource.axd:2897 My code has successfully completed an ajaxRequest to server side code:
function
OnClientClose(oWnd, args) {
var
arg = args.get_argument()
if
(arg!=
null
) {
$find(
'<%# RadAjaxManager1.ClientID %>'
).ajaxRequest(arg);
}
}