I have a simple form which uses knockoutjs and knockoutvalidation. When running IE in comptability mode I have the following behaviour.
A field is required.:
self.oldPassword = ko.observable().extend({ required: true});
When loading the page, I can see in debug mode that the message is: Field is required.
But when I start typing the error changes into: Please enter a value greater than or equal to true.
I am lost here, cause I want to support at least also IE8. I dont have this problem in IE10, Chrome or FireFox. And I dont want to rewrite all my javascript files with the knockout models and validations.
Does this problem sound familiar? And is there a solution?