We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f77b49b commit ab85807Copy full SHA for ab85807
1 file changed
WebSocket.js
@@ -325,10 +325,13 @@ Ext.define('Ext.ux.data.proxy.WebSocket', {
325
}
326
// Create, Update, Destroy
327
else {
328
+ var writer = Ext.StoreManager.lookup(me.getStoreId()).getProxy().getWriter(),
329
+ records = operation.getRecords();
330
+
331
data = [];
332
- for (i = 0; i < operation.records.length; i++) {
- data.push(operation.records[i].data);
333
+ for (i = 0; i < records.length; i++) {
334
+ data.push(writer.getRecordData(records[i]));
335
336
337
0 commit comments