Open pasaku opened 3 years ago
bump, I have this issue too. Thanks in advance.
Ok after months with no response from devs, I managed to monkey patch it till they fix it. Solution:
// Temporary fix for error: reading property of undefined, "prev"
setTimeout(() => {
const originalDestroy = this.table._extApi.contextApi.destroy;
this.table._extApi.contextApi.destroy = () => {
try {
originalDestroy();
} catch {}
};
}, 1);
Current error message showing is this while changing pages:
TypeError: Cannot read properties of undefined (reading 'prev' ... pebula-ngrid.js:4164
On line 4167, could you please add an Elvis Operator here before 'prev' and 'current':
angular12