fwt::Table.refreshRows() currently doesn't work - this lil' patch sorts it:
fwt::Table.refreshRows()
diff -r dcdb455f1605 src/fwt/js/TablePeer.js --- a/src/fwt/js/TablePeer.js Tue Jan 05 20:12:01 2016 -0500 +++ b/src/fwt/js/TablePeer.js Thu Jan 07 00:12:36 2016 +0000 @@ -236,7 +236,7 @@ fan.fwt.TablePeer.prototype.refreshRows = function(self, indices) { - this.refreshAll(); + this.refreshAll(self); } fan.fwt.TablePeer.prototype.needRebuild = true;
Thanks Steve - fixed
Login or Signup to reply.
SlimerDude Wed 6 Jan 2016
fwt::Table.refreshRows()
currently doesn't work - this lil' patch sorts it:andy Thu 7 Jan 2016
Thanks Steve - fixed