Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
135
webdatamenu getting following error in IE 8
posted

Microsoft JScript runtime error: 'Sys.WebForms.PageRequestManager' is null or not an object

the problem is some how $Util.IsChrome set's as true even though I am running IE 8.  Please let me know if anybody had same issue and fixed this issue.

 if($util.IsChrome || $util.IsSafari)
            {
                var onResizeFn = Function.createDelegate(this, this.__resizeTopLevelItems);
                $addHandler(window, 'load', onResizeFn);
                
                 //I.I. 90688: window.load is not called when part of the page is posted back by UpdatePanel
                 var prm = Sys.WebForms.PageRequestManager.getInstance(); --> it fails right there and doesn't load the webdatamenu.
                 if (prm) prm.add_endRequest(onResizeFn);
            }
            else
                this.__resizeTopLevelItems();
        }

it is under $IG.WebDataMenu.prototype =

thanks

ezpal

Parents Reply Children
No Data