I have a low reputation to comment. So here is another answer. The answer with scripts provided by anti-shock seams will no longer work. (The link to knockout.js was broken, but even after fixing it and adding a working link for knockout 3.0, it still didn't work)
I added ko.computed around ko.validation.group () and made it work this way.
self.errors = ko.computed(function() { return ko.validation.group(self.notes(), { deep: true })});
http://jsfiddle.net/bezFR/17/ (updated)
I guess there is a better way to do this, but at the moment it solves my problem and I am looking forward to fixing / looking at a better solution :)
Yodiz
source share