在复选框字段中的检查项目上,商店更新不一致。如果我检查所有商品商店应该获得更新。我有超过15件商品,它没有更新商店里的一些商品。设备和浏览器中的行为相同
onCheckItem:function(check){
var i=0;
var record = this.getRecord();
var customStore=Ext.getStore('customStore');
var customStoreVal=customStore.findRecord('title',record.get('title'));
if(record.get('title')==='All' && record.get('checkeditems')===false || record.get('checkeditems')==='false' ){
customStore.each(function(updateRecord){
updateRecord.set('checkeditems', true);
});
}
},