Cristian Trifan
Cristian Trifan
@themanojsingh Just noticed that `ko.validation.init` is not invoked with force option. Can you confirm that's the problem? ``` js ko.validation.init({/* options */}, true); ```
Working fiddle http://jsfiddle.net/uzjbqu4d/ --- @themanojsingh Did it work for you?
@awflierman Can you create a jsfiddle for this issue?
Try searching for properties added by Knockout Validation, e.g `isValid`, `isModified`, `error`. Retrieving all bindings attached to the element might help as well. ``` js var element = document.querySelector('#firstName'); var...
Thanks @maroy1986 I tried reproducing this issue by creating a Durandal based application using the starter kit they provide. I updated `app/main.js` to configure `knockout-validation` dependency, added some validation to...
@maroy1986 Are you using some sort of caching for the views or changing some nested view model? If that's the case then this might be related to #398 --- Any...
@maroy1986 Have you find anything that might help us solve this issue? You mentioned about the group not updating. In the newest version of the library there's an internal method...
Working fiddle http://jsfiddle.net/6wp03awL/
The problem is the group is not updated when any of the properties on the ViewModel changes. There are some solutions for this issue: - use `observable: false` in grouping...
The internal method is just a way to update the group and it was added to help `validatedObservable` remain consistent. Of course, using a private API is highly discouraged but...