Hi all,
It seems that function Ext.form.ComboBox.onTriggerClick always make doquery function twice:
Code:
// private
// Implements the default empty TriggerField.onTriggerClick function
onTriggerClick : function(){
if(this.disabled){
return;
}
if(this.isExpanded()){
this.collapse();
this.el.focus();
}else{
this.hasFocus = true;
this.doQuery(this.triggerAction == 'all' ?
this.doQuery(this.allQuery, true) : this.doQuery(this.getRawValue()));
this.el.focus();
}
}
Someone can tell me if there is a possible issue here or it's just the normal behavior ?
Thanks.