-
15 May 2011 9:11 AM #1
Closing window on Esc with the help of Ext.util.KeyNav works only in IE
Closing window on Esc with the help of Ext.util.KeyNav works only in IE
In ExtJs 3, the behavior of closing window upon Esc was per default. In ExtJS 4, it is not. I found out the Ext.util.KeyNav, but it seems to work only under IE.
To reproduce the case, just add the listeners to the example examples/window/layout.html
It works only under IE.Code:listeners: { show : function(win) { Ext.create('Ext.util.KeyNav', win.getEl(), { "esc" : function(e){ win.hide(); }, scope: win }); } }
Thank you for reporting this bug. We will make it our priority to review this report.
Similar Threads
-
Closing a tab in an ext window
By planavsky82 in forum Ext 3.x: Help & DiscussionReplies: 3Last Post: 7 May 2010, 7:00 AM -
[2.2] Ext.util.KeyNav: disable(); enable(); induces multiple calls to handler.
By krukow in forum Ext 2.x: BugsReplies: 1Last Post: 5 Jan 2009, 4:28 AM -
[SOLVED] Grid works correctly in window but not in tabbed window
By Tomxp in forum Ext 2.x: Help & DiscussionReplies: 5Last Post: 5 Jun 2008, 6:42 AM


Reply With Quote