I have a typical Ext Js style window with a left navigation, header and central region to display stuff.
The left navigation has a bunch of menu items that when clicked on load something via the Panel.Load() method from a specified url into the central panel.
My problem is that in IE if i click many menu items too fast i get various javascript errors, I believe dom elements are trying to be accessed that no longer exists as the updater is in the process updating the html.
Has anyone come across this or is there anyway to stop javascript executing once a new load request has started.
I have tried using this:
if(Ext.isIE) {
window.document.execCommand('Stop');
}
else {
window.stop();
}
Thanks in advance!