We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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':
this.focusChanged = this.focusChanged$ .pipe(buffer(this.focusChanged$.pipe(debounceTime(0, asapScheduler))), map(events => ({ prev: events[0]?.prev, curr: events[events.length - 1]?.curr })));
#angular12
The text was updated successfully, but these errors were encountered:
bump, I have this issue too. Thanks in advance.
Sorry, something went wrong.
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);
Fixed a bug in ContextApi.focusChanged, when the buffer emits an empt…
ecf1fb7
…y array of events Fixes shlomiassaf#215
Successfully merging a pull request may close this issue.
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
The text was updated successfully, but these errors were encountered: