A plugin for knockout.js for declarative, rule-based validation of models and properties.

learn more… | top users | synonyms

0
votes
0answers
15 views

Knockout Validation required validation IE8

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 = ...
0
votes
1answer
19 views

KnockoutJS Validation|Mapping Custom message does not work

I create a simple model from mapping with knowkoutjs and I want to validate it. Even if I specify the validation message, the default message is still displayed. ko.validation.configure({ ...
0
votes
1answer
41 views

knockout validation with typeahead combobox plugin

I am trying to use Knockout Validation in combination with Bootstrap Combobox Plugin. I have a select control that is bound to my observable property which has the required attribute (for KO ...
0
votes
1answer
47 views

Make ko validation only validate visible items

I have items dispersed within my view that are visible based on dates, drop down selections and the like. I would like to use ko validation because its nice to put validation logic in my model and not ...
0
votes
2answers
101 views

Does anyone know of articles on knockout validation [closed]

I'm using Knockout and the project Knockout-Validation seems a great way to add validation, but I can't get it to work. Does anyone know any good articles that have been written on it? The ...
1
vote
1answer
75 views

Radio buttons Knockoutjs

I have the following example: http://jsfiddle.net/hamsaya/cyBQH/2/ I have 2 values that I get from server A and B. I can only have one true at a time. Again what I need is one of the radios to be ...
0
votes
1answer
58 views

Validate observables within a collection using Knockout Validation

I have a message field and collection of people being bound in an unordered list accompanied each with a drop down list of colors and a default selection. Validation on the message field works, erase ...
0
votes
1answer
75 views

Knockout Validation: Dynamically define Required onlyIf rule

How do I define the required "onlyIf" rules dynamically? I get the rules fo all my inputs from the server, in this format: "Var1" => array("required"=>"onlyIf", "requiredIf"=>"Var2", ...
1
vote
1answer
72 views

Reusable property validation with knockout

I have the following class which validates the name and doesn't let the user put an empty name. With it I can get the valid value and notify the user if the input is invalid (preserving the last good ...
1
vote
0answers
109 views

Breeze.js & Knockout.js: translating breeze validation to knockout validation causes an 'Out of stack space' or 'Too much recursion'

I have a client side model generated by Breeze/OData and I used the code in this post to connect it to Knockout validation. It works great for validating individual fields through the isValid() ...
0
votes
0answers
43 views

Knockout - Observable value not updating [duplicate]

I've already asked this question in an earlier post but I am no nearer a resolution: Knockout - Can't update Observable value using Subscribe (due to extension validation) I have an observable ...
1
vote
2answers
164 views

Knockout - Can't update Observable value using Subscribe (due to extension validation)

I have attempted implementing the suggestions below but neither seemed to trigger the required reaction each time a value was updated. This may due to my implementation as I'm new to Knockout. I ...
0
votes
1answer
41 views

how to show one validation icon for radiobuttons group

I'm using knockoutjs and knockout validation plugin. I would like to show one validation icon for the radio group, after 'Question 1' title. How can I do this? <label>Question 1:</label> ...
0
votes
1answer
42 views

How do I constrain an observable to only be a certain set of values in Knockout.js?

I have the following input type bound to a "page" observable in my view model. <input type="text" data-bind="value: page"/> The user can enter any value in the text input, but I'd only want ...
0
votes
0answers
77 views

knockout required validation shows at page load

Following is my validation configuration: //************ initialize validation engine ********************* ko.validation.configure({ registerExtenders: true, messagesOnModified: true, ...
1
vote
1answer
189 views

Unique value validation with Knockout-Validation plugin

I'm using KnockoutJS with the Knockout-Validation plugin to validate fields on a form. I'm having problems validating that a value is unique using the native validation rule - unique I'm using the ...
0
votes
1answer
169 views

Knockout-Validation Using Regular Expression to Validate a Phone Number

I am trying to add a simple regular expression validation to one of my observables using Knockout-Validation. I have the following: self.ContactPhone = ko.observable().extend({ required: ...
0
votes
1answer
259 views

KnockoutJs & Asp.Net MVC 4 - multi model views Submit

I am in a situation where I have 2 tabs and for each tab I have a partial views, I am using jquery UI to create my tabs. I have two options for each user 1. to save, 2. to submit. On save it will ...
0
votes
2answers
165 views

knockout Validation: Any option to apply the errorElementClass to parent of input?

Does the Knockout validation plugin have any option to apply the error class to the parent or parent's-parent of the input in error? If not can anybody suggest an approach to modify knockout ...
0
votes
1answer
169 views

Knockout Validation on Breeze.js entities

I'm trying to get Knockout Validation running on my Breeze.js entities but not having much luck. So currently I'm just trying to get a very basic test working to confirm the approach should work but ...
0
votes
1answer
181 views

Custom Knockout Validation Rules with TypeScript

This is very similar to another question I have active, but may as well ask it as its different and may be found useful by a different audience. I have a custom rule for knockout validation: ...
1
vote
1answer
84 views

Why does my string value pass validation, but integer value does not?

Using knockout 2.2.1 with latest knockout-validation.js. See the following jsfiddle for a working example of my issue: http://jsfiddle.net/tbstudee/keRPY/4/ As you can see when being loaded with ...
3
votes
1answer
197 views

How to add a custom message to a pattern validation in ko validation

Let's say I have: self.UserName = ko.observable("").extend({ required: true }).extend({ pattern: '[\S]' }); I'm trying to do something like (I've tried a few variations): self.UserName = ...
0
votes
0answers
48 views

Validate my observable object which contains properties bound to input elements of my view

I try to use knockout validation but I am facing something I didn't understand. I have an observable object 'transport' which contains a lot of observable properties. transport -> ...
0
votes
0answers
81 views

Knockout validation of my properties in my model

I try to add knockout validation on my page. I see an example here: How to use ko.validation.group function But my code is somewhat different, see below: define(function (require) { var ...
0
votes
2answers
264 views

Knockout JS Validation to existing view model

This is my current code unmodified: http://jsfiddle.net/XABtF/ I am currently using both jQuery Validation & Knockout Validation I have read through the documentation on both and tried ...
0
votes
1answer
193 views

Knockout Custom Binding foreach

I'm trying to create a validation summary that has list of links to the errors for the KnockoutJS Validation Library and I need to create a custom foreach handler to present it. With the code below ...
0
votes
1answer
129 views

Showing validation messages just after binding with Knockout Validation

With Knockout Validation it appears that validation is performed only when a key is hit on a control which might change an observable value. When I bind the first time, the validation is not ...
0
votes
0answers
101 views

knockout validation fails but still submits the form

I am using the knockoutvalidation.js library. I am using it to validate the password and confirm password fields. They must match. If I try to submit the first time it works fine, it blocks the submit ...
0
votes
0answers
62 views

Knockout validation required isn't updating back to not required after it has been set to true

little new with knockout validation and struggling with this whole onlyif parameter. So I have a model like so: define('model.blah',['ko'],function (ko) { var blah = function () { var ...
3
votes
2answers
146 views

knockoutjs Computed observable not working :( jsfiddle example

I can't seem to have a computed value of this working. any input would be appreciated. i get the values for my prices from server. var pModel = function () { var self = this; ...
0
votes
1answer
58 views

How to get one of observable field's validation result in the computed field using Knockout Validation framework

i have a view model defined following: var ViewModel = function() { var self = this; self.name = ko.observable().extend({ required: true }); self.identityCode = ko.observable().extend({ ...
0
votes
0answers
60 views

How to call isValid() function in the viewmodel using knockout-validation

I have a viewmodel defined following: var ViewModel = function() { var self = this; self.property1 = ko.observable().extend({ required: true }); self.property2 = ko.computed(function() { ...
0
votes
1answer
169 views

How to get the observable property's value in the computed property in Knockout-Validation

I use the Knockout-Validation framework to validate the viewModel. I have a viewmodel defined following: ko.validation.init({ decorateElement:true, errorElementClass: 'invalid', ...
0
votes
0answers
74 views

ApplyBindings Twice, Validation

I have a grid that has several business objects in them. Lets call them Product. When you click on the item, I make a AJAX call and take the data and create a Knockout viewModel that is bound to a ...
0
votes
1answer
157 views

What is the best way of handling multi dimensional arrays in Knockout JS?

What is the standard way of dealing with multidimensional arrays with Knockout? Let's say you want to generate a dynamic table with KnockoutJS. The table rows and columns are generated from ...
1
vote
1answer
240 views

How to do Knockout validation on complex MVC models in a declarative way?

Technically I've got the answer to this question, but unfortunately not the answer I was looking. I had to accept it because the person worked with me all the way, investing lot of effort. Here I am ...
1
vote
1answer
467 views

How to apply knockout validation to properties every item List passed by MVC?

The following is a view models in ASP.NET MVC: public class Email { public string Selected { get; set; } public string Name { get; set; } } public class User { public string UserName { get; ...
0
votes
1answer
249 views

Knockout validation error in Internet Explorer?

In my razor view that using knockout and supposedly knockout validation I add the following line (to actually start using ko validation): <script ...
0
votes
1answer
71 views

How to use knockoutjs with a dropdown from server

from server I get either an A or a B or a G for type What I want it to show is a drop down of a text Gamma if it is G and Alpha if it is A and Beta if it is B. Also that item to be selected ... Not ...
0
votes
0answers
408 views

ko.validation.group not always up to date with displayed errors

I have a view model with an error collection that I am binding to an ASP.NET MVC style validation summary. The problem is that the error collection is not always up to date with the current state of ...
1
vote
1answer
132 views

Knockout.Validation Unusable, Any Alternatives? Or Workarounds?

I'm searching for a knockout validation plugin and I stumbled upon knockout.validation which looks very promising, however, it has a fatal flaw.. Once you have created a ko.validatedObservable({ ...
0
votes
0answers
153 views

Knockout Validation Firing on Initial Load

We are currently working on a razor application using knockout 2.1. We have started using the knockout validation library. The issue is that the ko validations are being fired on the initial load of ...
1
vote
1answer
239 views

Knockout validation on dynamic viewmodel

I am creating knockout viewmodel dynamically and this code is working fine. I want to add validation in this viewmodel. Can I add validation in this viewmodel? Is this good approach or should I ...
0
votes
1answer
193 views

knockoutjs validation async ajax always getting invalid

i am using knockout validation plugin and i am not getting how can i verify that validation is true or false ko.validation.rules['remote'] = { async: true, validator: function ( val, ...
1
vote
0answers
180 views

KO.mapping + KO.validation, how to validate two properties using validation mapping

var validationMapping = { emailAddress: { create: function (options) { return ko.observable(options.data).extend({ required: true }).extend({email:true}); ...
0
votes
0answers
54 views

How to customize dirty flag to always check with first state instead of previous state?

I have a requirement where I need to check my UI values with the initial state of my model. If I change the values and submit, the isDirty is true, as expected. But, if I submit again, then, isDirty ...
1
vote
1answer
305 views

Knockout validation with HTML5 attributes

Can I just add HTML5 attributes to my element to wireup validation? If so it doesn't seem to be working for me. Do I need to do something extra? http://jsfiddle.net/FcM2A/1/ vm required<input ...
0
votes
0answers
77 views

ko.bindingHandlers.validationCore.init doesn't work

I am trying to a custom binding to input as datepicker: CODE HERE: http://sdrv.ms/Xc5HZw I have the following code in place but the validation doesn't highlight the control when its invalid: ...
0
votes
1answer
57 views

validation with onlyIf doesn't work

I am running into issue when trying to do : newNoteText: ko.observable().extend({ required: { onlyIf: function () { return this.ShowNote == true } } }) I noticed that this doesn’t work, but when I ...

1 2 3