KoGrid
KoGrid copied to clipboard
Changes to view model not shown in grid
The grid initially renders fine, but when cells are not refreshed when the underlying value is updated.
The problem seems to originate from the propertyCache row.js:
Original: self.propertyCache = {}; self.getProperty = function (path) { return self.propertyCache[path] || (self.propertyCache[path] = window.kg.utils.evalProperty(self.entity, path)); };
Working: self.getProperty = function (path) { return window.kg.utils.evalProperty(self.entity, path); }