I'm using Ryan Niemeyer's Dirty Flag. An example of his method can be seen in this jsFiddle.
He has a dirtyItems method on the ViewModel
this.dirtyItems = ko.computed(function() {
return ko.utils.arrayFilter(this.items(), function(item) {
return item.dirtyFlag.isDirty();
});
}, this);
However, I can't seem to get his dirtyItems method working with my data.The biggest difference is that I am using the mapping plugin. Everything I have tried comes back empty.
Here is a jsFiddle of my implementation.