Using jqgrid in one of my web applications I found its not working in IE7 only. On other browser its working fine IE8+, chrome, FF.
While debugging I found that loadComplete() method is not firing in IE7 although its firing in other browsers.
Using fiddler I found that I am getting correct json and response but why loadComplete is not firing? how to investigate this problem?
loadComplete : function(){
alert('lc');
},
Sorry, but the callback
loadCompletedo called in all web browsers in generally. It could be that an exception will be thrown during processing of some data in specific browser.If you want to investigate the problem yourself I would recommend you to start the code in Developer Tools of IE (press F12 to start) and then starting debugging in the “Script” tab. I suppose you’ll get some exception which will be produced only in IE7.