var pmStore = new storeOfUsers(); // storeOfUsers is an Ext.data.DirectStore with autoLoad: true
console.log(pmStore.data); // is an Ext.util.MixedCollection with 6 items including user_id == 1
var pms = pmStore.data.filter('user_id', 1);
console.log(pms); //is an Ext.util.MixedCollection with length == 0
こんにちは。
MixedCollection をフィルタリングした後、user_id == 1 の結果がありますが、返されたコレクションは空です。
ありがとう。