1
vote
Width issue with Ext.Panel bbar in IE 6
Maybe you should try to force the width of the bbar:
main.getBottomToolbar().setWidth(500);
right after Panel creation?
But I think the problem is that bbar is rendered into …
0
votes
Checking to see if a DOM element has focus.
There are several things in IE, that does the trick:
If focusing element has different z-index - you can quickly set z-index to that of currently focused element (possibly setting …
1
vote
Iframes, pdfs and focus with internet explorer
Try to delay setting focus by 200-500 msec. It's quite common IE issue.
EDIT:
Use onLoad event in IFRAME:
<body onLoad="parent.window.check_focus()"> .... < …
0
votes
0
votes
ExtJs IE rendering issue
For a short hint you may try to answer the question:
What is layout of 'center' region?
With border layout I can see only one region, and it called 'west'. This shouldn't work as ex …
0
votes
Internet Explorer and <select> tag problem
You should use event.stopPropagation() while in <select>, or cancelBubble() in <select> element itself.
…
