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
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; });
The text was updated successfully, but these errors were encountered:
blazkovicz
changed the title
Use projections with computed that return array
Need ability to use projections with computed arrays
Sep 4, 2014
blazkovicz
changed the title
Need ability to use projections with computed arrays
Extend projected arrays with same map and filter methods
Sep 5, 2014
Yes, you're right, I was misleaded by rebinding on the page, so actually I need projections for observables and computeds that contain array too.
blazkovicz
changed the title
Extend projected arrays with same map and filter methods
Add projections for observables and computeds that contain array
Sep 16, 2014
usage example:
The text was updated successfully, but these errors were encountered: