knockout-projections icon indicating copy to clipboard operation
knockout-projections copied to clipboard

Knockout.js observable arrays get smarter

Results 14 knockout-projections issues
Sort by recently updated
recently updated
newest added

jasmine-reporters is not used in shipped code, but is listed as a devdependency in this package. It should be listed as a devDependency rather than a dependency.

When using chained calls arr.filter(...).map(...) and disposing only last chain object it might leak memory. Solution is to intercept each call in chain and "dispose" them.

Whenever you create a projection it is evaluated immediately. Why not defer it? After we moved over to knockout-projections the initial page load time was higher because all our filtered...

Just switches the order of module loading scenarios. This change only has an effect on apps that are build with electron or nw.js in combination with the require.js optimizer. The...

Observable arrays assume that their wrapped arrays can be sparse, and array change tracking appears to work on sparse arrays (even if it iterates numerically instead of by key). However,...

I have multiple filters that I need to apply to an array. When present the filters will apply in an AND fashion. http://stackoverflow.com/questions/28670719/how-to-implement-an-efficient-filter-using-knockoutjs

It would be very nice if I were able to provide new projections without forking your project. The only thing that is holding me back from doing this, is that...

Set the subscription to this.mappedValueComputed after setting of this.previousMappedValue see issue #12

usage example: ``` var items = ko.computed(function () { return [1,2,3,4,5,6]; }); // now I can not write next: var selectedItems = items.filter(function (item) { return item > 3; });...