Threaded View
-
18 Jan 2013 12:20 AM #1Sencha - Community Support Team
- Join Date
- Nov 2007
- Location
- Helsingborg, Sweden
- Posts
- 2,485
- Vote Rating
- 56
[4.2.0.265] Store "add" event firing contract changed
[4.2.0.265] Store "add" event firing contract changed
Ext.data.Store does:
Code:add: function(arg) { if (Ext.isArray(arg)) { records = arg; } else { records = arguments; // BOOOOOOOOH }
Should normalize it to real array. Any 'instanceof Array' or Ext.isArray checks on the Records param fails now... Docs would also be lying right now since they state it should be an Array of records.


Reply With Quote