0
{
    xtype: 'numberfield',
    name: 'weight',
    minValue: 10,
    maxValue: 1000,
    placeHolder: 'WEIGHT',
    cls: 'GoldWtLayout',
    id: 'GoldWtKgLayoutMum',
    enableKeyEvents: true,
    listeners: {
        keydown: function(){
            alert('keydown');
        }
    }
}
4

1 回答 1

0

文档来看,numberfield似乎没有keydown听众。你大概可以看看mousedownlistener。

编辑

想一想,您可能想要使用keyup事件侦听器。

于 2013-05-31T07:31:45.900 回答