Extjs superboxselect keyup事件未触发

时间:2012-06-28 08:50:09

标签: extjs keyup

我正在为我的一个项目使用superboxselect。我需要执行一些额外的过滤。因此我需要能够在keyup事件中执行此操作。 但我无法让它发挥作用。

 var test = new Ext.ux.form.SuperBoxSelect( {
    applyTo : 'testId',
    id : 'test',
    allowBlank : true,
    msgTarget : 'title',
    xtype : 'superboxselect',
    resizable : true,
    hiddenName : 'statesHidden[]',
    width : 300,
    store : somestore,
    mode : 'local',
    displayField : 'name',
    valueField : 'code',
    classField : 'cls',
    styleField : 'style',
    extraItemCls : 'x-flag',
    extraItemStyle : 'border-width:2px',
    stackItems : true,
    listeners : {'keyup' : testFunction}
});

  function testFunction(){
       alert("hola");
  }

1 个答案:

答案 0 :(得分:2)

将enableKeyEvents属性设置为true。

enableKeyEvents:true