I'm using knockout.js
and knockout-validation with MVC 4.
I can perform client side validation fine with knockout-validation.
However I need to ensure that any viewmodels posted to my controller are valid.
Therefore I manually validate my view models server side and return the modelstate serialized as JSON (a co-worker wrote a simple function to do this).
My problem is that I'd like to some how use knockout-validation to consume the JSON serialised modelstate to output errors.
So is there any way to manually add errors and messages in knockout-validation?