Say I have this array of same-type objects:
var people = [
{ status: 0, name: "name1"},
{ status: 1, name: "name2"}
];
and I want it not only to be observableArray, but also I want to observe ONLY, say, status property of each object.
Imagine that the objects themselves might be added or deleted. The name property of any of those objects is not going to change so I don't really need to observe the name but the status of every object might get changed, thus it'd be cool to make it observable.
Is it possible to map it with knockout utilities with some cool hack syntax or do I have to either iterate through every object and map its status property into observable or have the whole array and its objects properties observable?