Ext combo backspace

设置combo可编辑自然感知时,第一次感知时正常,当按backspace键时 还是加载上次加载的数据。我的解决方法是在listeners中加入keydown事件
    keydown : function(field,e){
	     if (e.getKey() == Ext.EventObject.BACKSPACE) {
								     disDs.removeAll();
								     Ext.getCmp('dis').setValue('');
	     }

你可能感兴趣的:(ext)