2014年8月29日 星期五

Disable Backspace key for SPA (single Page Application)

       Ext.EventManager.on(window, 'keydown', function (e, t) {
           if (e.getKey() == e.BACKSPACE && (!/^input$/i.test(t.tagName) || t.disabled || t.readOnly)) {
               e.stopEvent();
           }
       });

沒有留言:

張貼留言