Error con evento para hotkey en Sencha
AUTOR PREGUNTA #1
Ext.onReady(function () { Ext.util.KeyMap(document, { key: 'abc', handler: function () { alert("Hotkey fue presionada!"); } }); });
-
¿Tienes la misma pregunta? Yo también
Esto también te interesa!
PREGUNTAS SIMILARES
#3
Ext.onReady(function () { var map = new Ext.util.KeyMap(document,{ key: [65,66,67], fn: function(){ alert('a, b or c fue presionada'); } } ); });