You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Upgraded grid from 1.7.2 to 1.8.0. When [navigable]="true" get the following error:
ERROR TypeError: this.cursor.changes.takeWhile is not a function
at NavigationService.init (navigation.service.js:118)
at GridComponent.ngOnInit (grid.component.js:806)
at checkAndUpdateDirectiveInline (core.js:12352)
at checkAndUpdateNodeInline (core.js:13876)
at checkAndUpdateNode (core.js:13819)
at debugCheckAndUpdateNode (core.js:14712)
at debugCheckDirectivesFn (core.js:14653)
at Object.eval [as updateDirectives] (LeaseSupTabComponent.html:10)
at Object.debugUpdateDirectives [as updateDirectives] (core.js:14638)
at checkAndUpdateView (core.js:13785)
The text was updated successfully, but these errors were encountered:
Thanks for the bug report. We're in the process of upgrading the packages to RxJS 5.5, see #1244
The error seems to be caused by the mix of RxJS versions that we currently have in the latest package versions. The Grid is still on RxJS 5.0 while the rest of the packages use the new pipeable operators from RxJS 5.5. In theory, this shouldn't be a problem, but there must be something going wrong with the operators that modify the global Observable prototype.
The workaround for the moment is to pin the Date Inputs package to 1.x: npm install --save @progress/kendo-angular-dateinputs@1
New installs will pick the 1.x version as well until we investigate.
Upgraded grid from 1.7.2 to 1.8.0. When [navigable]="true" get the following error:
ERROR TypeError: this.cursor.changes.takeWhile is not a function
at NavigationService.init (navigation.service.js:118)
at GridComponent.ngOnInit (grid.component.js:806)
at checkAndUpdateDirectiveInline (core.js:12352)
at checkAndUpdateNodeInline (core.js:13876)
at checkAndUpdateNode (core.js:13819)
at debugCheckAndUpdateNode (core.js:14712)
at debugCheckDirectivesFn (core.js:14653)
at Object.eval [as updateDirectives] (LeaseSupTabComponent.html:10)
at Object.debugUpdateDirectives [as updateDirectives] (core.js:14638)
at checkAndUpdateView (core.js:13785)
The text was updated successfully, but these errors were encountered: