From: Scott A. L. <sc...@sc...> - 2000-11-07 23:19:12
|
Ah, I found the problem. There are two errors in the dynlayer.js. In both removeChild and deleteChild, locate this line: DynAPI.removeFromArray(this.dyndoc.allID,child,true) and replace it with this: delete this.dyndoc.allID[child.id] I don't know how the line got changed. Rob, can you fix this in the distribution? It *is* a pretty crippling bug. It seems that removeFromArray is not doing a proper job with associative arrays. However, it should be noted that when using an assoc. array, it's *always* faster and more accurate to simply do "delete array[string]" rather than use removeFromArray. scottandrew |