Skip to content Skip to sidebar Skip to footer

Knockoutjs Observablearray To Update When Inner Observable Is Changed

I need to know how to trigger the update for an observableArray when an observable is changed inside the observableArray. I have an observableArray that represents a binary tree. I

Solution 1:

Ended up using .replace() on the observableArray

Solution 2:

Managed to look through the code and find observableArray.replace ()

RELATED: How to replace a given index element in knockoutjs

Post a Comment for "Knockoutjs Observablearray To Update When Inner Observable Is Changed"