Created
July 16, 2012 19:17
-
-
Save lsmith/3124468 to your computer and use it in GitHub Desktop.
Patch for 3.6.0pr2 and pr3 DataTable
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Y.DataTable.BodyView.prototype._afterModelListChange = function (e) { | |
var handles = this._eventHandles; | |
if (handles.dataChange) { | |
handles.dataChange.detach(); | |
delete handles.dataChange; // <-- this line is missing in the core code | |
this.bindUI(); | |
} | |
if (this.tbodyNode) { | |
this.render(); | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment