ExtJs NumberField或TextField不能处理KeyPress问题


keyup,keydown,keypress,都试试,当初郁闷了我很久。

Form控件的
NumberField (或TextField)不能获取键盘事件,可以试试以下方法。

    var barcode = new Ext.form.NumberField({
        allowDecimals: false,
        decimalPrecision: 0,
        allowNegative: false,
        selectOnFocus: true,
        allowBlank: true,
        applyTo: 'txtCard',
        emptyText: '- Scan -'
    });

    Ext.get(barcode.el).on('keyup', function(e) {
    //do something
  }

你可能感兴趣的:(ext)