knockout-fast-foreach
knockout-fast-foreach copied to clipboard
Foreach. Faster. For Knockout.
When I tried to consume it in my project, It continue to fail even though I tried to define ko as a part of other files, saying ko is not...
This is the initial attempt to avoid costly add/remove DOM operations by reusing DOM nodes and the respective context(s), as discussed in #37. This patch still relies on the arrayChange;...
This: https://github.com/knockout/tko.binding.foreach/commit/b3380c97c7c0ff453b700d1d39e9c03ffc3d62a4 @cervengoc – If you get a chance, please feel free to incorporate the changes from the referenced patch. Cheers.
See https://github.com/brianmhunt/knockout-fast-foreach/issues/47
We are using large nested foreach loops in KO templates with 'as', i.e. .... to be able to refer to parent objects in a simpler way than using $parent and...
Nested elements can lead to a: ``` Uncaught TypeError: Cannot read property 'insertBefore' of null ko.virtualElements.prepend ko.virtualElements.insertAfter FastForEach.insertAllAfter FastForEach.added ... ```
Hi came across this when trying to use this binding (which works great by the way). If you wrap the fastforeach binding in a it will in many cases, cause...
Hello, I am using fastForEach to bind my array and when I try to access either the $index or $parent i get an undefined error. Any help? [fastForEach.txt](https://github.com/brianmhunt/knockout-fast-foreach/files/1076125/fastForEach.txt)
For no reason apparent to me, `removeNode` is painfully slow in the following test: [Performance Comparison for React, Angular and Knockout](https://brianmhunt.github.io/chrisharrington-performance.html). Look at this: ![screen shot 2015-12-23 at 9 36...
Because `fastForEach` doesn't use the native `template` binding internally for rendering templates, it can lead to several issues like - Won't get any fixes related to `template` binding. - Can't...