1

我正在为我的一个项目使用 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");
  }
4

1 回答 1

2

将 enableKeyEvents 属性设置为 true。

启用键事件:真

于 2012-12-12T08:22:45.313 回答