cwolves
17 Jun 2007, 4:31 PM
Like the title says, it's impossible to filter a combobox with mode=='local' and triggerAction=='all'.
if(this.mode == 'local'){
this.selectedIndex = -1;
if(forceAll){
this.store.clearFilter();
Since there's no 'beforeclear' trigger, I had to delete clearFilter to get it to work:
this.columnStore.clearFilter = function(){};
Just saying that there should be a way to do this.
if(this.mode == 'local'){
this.selectedIndex = -1;
if(forceAll){
this.store.clearFilter();
Since there's no 'beforeclear' trigger, I had to delete clearFilter to get it to work:
this.columnStore.clearFilter = function(){};
Just saying that there should be a way to do this.