Knockout-Validation icon indicating copy to clipboard operation
Knockout-Validation copied to clipboard

A validation library for Knockout JS

Results 102 Knockout-Validation issues
Sort by recently updated
recently updated
newest added

I have really liked using knockout-validation. I think it works well. I've just come across one small thing (that has been verified by someone else). I have a knockout observable...

When tabbing out of a *valid* field (and the field moves from `isModified` false => true), calls are made to the css handler that temporarily put it into an invalid...

It's already in knockout [#170](https://github.com/knockout/knockout/issues/170)

enhancement

Hi, I have a problem with validating nested objects. I have following view model: ``` var ViewModel = function (first) { this.person = ko.observable(new Person(first)); this.changePerson = function () {...

help wanted

I am calling functions like this: ``` js ko.validation.registerExtenders(); ko.validation.init({ decorateInputElement: true, insertMessages: false, errorElementClass:'input-danger' }); ko.applyBindingsWithValidation(viewmodel, document.getElementById("someDIV")); ```

When reading `pattern` from HTML it is used directly as a regular expression, which is not correct. The [spec](https://html.spec.whatwg.org/multipage/input.html#attr-input-pattern) says > The compiled pattern regular expression, when matched against a...

Hello! Is there any way to specify different CSS-class for error message for different validation rules? I didn't found a way to do this. Currently using version 2.0.0. Thank you.

Hello, I implemented Severity as per some suggestions in this ticket: https://github.com/Knockout-Contrib/Knockout-Validation/issues/136 I don't think this pull request is ready to merge, we need to squash and write tests. I'm...

Implements change discussed in #554 Before this change, you had to specify either a custom message or an onlyIf property in order to use a params object, such as this:...