0
我看到這個問題,我想更進一步 https://stackoverflow.com/questions/18606212/store-filter-in-sencha-touch#=商店濾波器(多個項目)
現在我測試的是這樣的:
TABLEVIEWSTORE1.filter("name", name);
TABLEVIEWSTORE1.load({callback: function(){
tableviewstore2.load({callback: function(){
TABLEVIEWSTORE1.each(function(item){
tableviewstore2.filterBy(function(record,id){
return record.get("number") == item.get("number");
}, this);
});
TABLEVIEWSTORE1.load({callback: function(){
tableviewstore2.load({callback: function(){
// DO MORE THINGS
}});
}});
}});
}});
});
有沒有人一個想法,它如何工作正常嗎?
它的工作原理。非常感謝你:) 我只改變了 Ext.Array.include(uniqueNumbers,item.get(「number」)); – kadddah