ExtJS 处理keyboard事件:


new Ext.form.TextField({

height : 24,
width : 225,
listeners : {
specialkey : function(field, e) {

if (e.getKey() == Ext.EventObject.ENTER) {

  window.event.keyCode = Ext.EventObject.TAB;
                                }
                            }
                        }

相关文章:

  • 2022-12-23
  • 2021-11-26
  • 2021-05-22
  • 2021-07-05
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-11-03
  • 2021-05-10
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案