我使用一些輸入控件顯示模式窗口。當我按下「標籤」鍵時,它將瀏覽控件。Extjs模式窗口對焦控制
如果我繼續按下「選項卡」,在某些時候它將控件集中在這個窗口後面,我甚至可以輸入這個控件。
我正在使用ExtJs 4.1
謝謝。
我使用一些輸入控件顯示模式窗口。當我按下「標籤」鍵時,它將瀏覽控件。Extjs模式窗口對焦控制
如果我繼續按下「選項卡」,在某些時候它將控件集中在這個窗口後面,我甚至可以輸入這個控件。
我正在使用ExtJs 4.1
謝謝。
它是Extjs中的着名錯誤。選中此項: http://www.sencha.com/forum/showthread.php?214072-4.1.0-Modal-Window-Bad-Focus-Behavior。
任何解決方法? – Beetlejuice
做了一些解決方法,爲我工作,檢查了這一點,請讓我知道。
/* ***For activation of Tab Key only to the active panel****/
Ext.EventManager.on(Ext.getBody(), 'keydown', focusListenerLogin, Ext.getBody());
Ext.EventManager.on(Ext.getBody(), 'keyup', focusListenerLogin, Ext.getBody());
Ext.EventManager.on(Ext.getBody(), 'keypress', focusListenerLogin, Ext.getBody());
Ext.EventManager.on(Ext.getBody(), 'focusin', focusListenerLogin, Ext.getBody());
/***Here the Function is defined.***/
function focusListenerLogin(e) {
if(typeof Ext.WindowManager.getActive() !== 'undefined' && Ext.WindowManager.getActive() !== null) {
var activeWinId = Ext.WindowManager.getActive().getId();
var obj = Ext.getCmp(activeWinId);
var id = typeof obj.focusEl !=='undefined' ? obj.focusEl.id : obj.id;
window.prevFocus;
var dom = activeWinId;
var components = [];
Ext.Array.each(Ext.get(dom).query('*'), function(dom) {
var cmp = Ext.getCmp(dom.id);
if(cmp && cmp.isVisible()) {
if (cmp && cmp.btnEl && cmp.btnEl.focusable())
components.push(cmp.btnEl);
else if(cmp && cmp.inputEl && cmp.inputEl.focusable())
components.push(cmp.inputEl);
}
});
if (typeof obj != 'undefined' && obj.isVisible() && obj.el.id === activeWinId && (typeof e.keyCode!== 'undefined' ? e.keyCode === 9 : true)) {
var focused = document.activeElement;
if (!focused || focused === document.body){ focused = null;}
else if (document.querySelector) focused = document.querySelector(":focus");
if(typeof window.prevFocus !=='undefined' && window.prevFocus !== null && focused !== window.prevFocus && components.length>0 && window.prevFocus.id === components[components.length-1].id) {
Ext.getCmp(id).focus();
window.prevFocus = document.activeElement;
}
else if(components.length==0) {
Ext.getCmp(id).focus();
window.prevFocus = document.activeElement;
}
else
window.prevFocus = focused !== null ? focused : window.prevFocus;
}
return false;
}
}
Logic是
如果焦點從窗口部件然後將它重新分配給所述第一個的最後一個元素外出。
如果窗口沒有任何可聚焦元素,則焦點將僅保留在窗口上。
請讓我知道,如果這段代碼可以幫助你。
這個bug在ExtJS 5.0.1.1255版本上依然存在。有什麼建議麼? – dataol