From 70710f430bbad40cf34cb5c4ad3a21051cfda62a Mon Sep 17 00:00:00 2001 From: Zachariah Brown Date: Tue, 3 Jan 2017 16:00:18 -0500 Subject: [PATCH] Fixes removed event oldData items. (#2535) --- lib/DataView.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/DataView.js b/lib/DataView.js index 59aa2ffc..04725868 100644 --- a/lib/DataView.js +++ b/lib/DataView.js @@ -108,7 +108,7 @@ DataView.prototype.refresh = function () { id = oldIds[i]; if (!newIds[id]) { removedIds.push(id); - removedItems.push(this._data[id]); + removedItems.push(this._data._data[id]); delete this._ids[id]; } }