You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using the DStoreAdapter for legacy reasons - observing the result works fine - but the result-array is not being updated if items are deleted etc.
in the old store-API, the results-array is (always?) up-to-date
var dstoreadapter = new DStoreAdapter()..
ver result = dstoreadapter.query(...);
result.observe(function(item,from,to){
when(result,function(){
console.debug(result); //result must not contain the removed object
});
});
dstoreadapter.delete(...);
Am I doing something wrong?
The text was updated successfully, but these errors were encountered:
When using the DStoreAdapter for legacy reasons - observing the result works fine - but the result-array is not being updated if items are deleted etc.
in the old store-API, the results-array is (always?) up-to-date
Am I doing something wrong?
The text was updated successfully, but these errors were encountered: