
Originally Posted by
rdougan
Could you please provide a test case so we can look into it?
I'm working on it. I am in the middle of debugging but I can share some findings with you already...
There is a bug that is triggered in the "insert' method on the "Store" class when it fires the "add" event:
Code:
me.fireEvent('add', me, records, index);
Therefore this code NEVER gets executed:
Code:
me.fireEvent('datachanged', me);
if (me.autoSync && sync) {
me.sync();
}
As a result, the insert method never completes. This explains the missing entries. Not sure why yet.