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
{{ message }}
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
Hi there,
In my application I have few ng-repeat loops and one of them is throwing the TypeError: Cannot read property 'childNodes' of undefined here:
} else if (childLinkFn) {
childLinkFn(scope, node.childNodes, undefined, parentBoundTranscludeFn);
}
Sorry can't provide any fiddle as I was not able to reproduce this error. However, one thing to mention is that the ng-repeat on that element is used on different roots of the application, it uses the exact same html, no javascript handling applied at all, it displays a list of countries returned from an API backend as an array of Object's based on some predefined inputs. The only difference I could spot is a node called $$hashKey: int inside each Object of the passed array. (Not sure if this could be the problem).
I'm using angular 1.3.0 beta 14.
I have read this issue #4930 where this problem is discussed, fixed and merged into master. Not sure if the version I'm using does include or not the specified fix.
Thank you!
The text was updated successfully, but these errors were encountered:
I guess I figured out what's the cause. I'm using ng-repeat inside a JarvisWidgets, turned the plugin initialization off then back on and the error disappeared.
Hi there,
In my application I have few
ng-repeat
loops and one of them is throwing theTypeError: Cannot read property 'childNodes' of undefined
here:Sorry can't provide any fiddle as I was not able to reproduce this error. However, one thing to mention is that the
ng-repeat
on that element is used on different roots of the application, it uses the exact same html, no javascript handling applied at all, it displays a list of countries returned from an API backend as an array ofObject
's based on some predefined inputs. The only difference I could spot is a node called$$hashKey: int
inside eachObject
of the passed array. (Not sure if this could be the problem).I'm using
angular 1.3.0 beta 14
.I have read this issue #4930 where this problem is discussed, fixed and merged into master. Not sure if the version I'm using does include or not the specified fix.
Thank you!
The text was updated successfully, but these errors were encountered: