Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have asp.net mvc3 project where I do a bulk edit on a table with knockout binding. I want to do validations like required and number validations while saving data. Is there any easier way to do knock out validations. PS: I am not using forms.

share|improve this question
You should consider accepting the answer given here. – mydoghasworms Mar 22 '12 at 7:05

1 Answer

up vote 22 down vote accepted

Have a look at:

https://github.com/ericmbarnard/Knockout-Validation

This cleanly setups and uses what's described in the knockout documentation at: http://knockoutjs.com/documentation/extenders.html under: Live Example 1: Forcing input to be numeric

You can see it live at: http://jsfiddle.net/ericbarnard/KHFn8/

share|improve this answer
1  
Is it me or is the fiddle broken on IE9 and IE10? Works on Chrome and Firefox tho'. – rob Oct 1 '12 at 4:08
@rob: IE9 gives me a; "script was blocked due to mime type mismatch"-error. Probably you can disable this security check. – Cohen Oct 2 '12 at 19:19
1  
@rob: To make it working in IE, I've removed the resources and copied the knockout.validation into the fiddle (ugly, I know), it does work however: jsfiddle.net/KHFn8/1369 – Cohen Oct 2 '12 at 19:26
1  
Thanks Cohen. So NOW I'll have confidence it'll work on my site even if it's ugly on jsfiddle. :-) – rob Oct 2 '12 at 23:20
1  
Here's a working version of the original fiddle from eric barnard that isn't as ugly. :) jsfiddle.net/alexdresko/KHFn8/2403 – Alex Dresko Mar 3 at 17:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.