Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8950551
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T13:28:43+00:00 2026-06-15T13:28:43+00:00

I am using KnockoutJS and Knockout-Validation. I am using the property errorElementClass , however,

  • 0

I am using KnockoutJS and Knockout-Validation. I am using the property errorElementClass, however, I’d like to be able to have another class assigned to the elements when the validation errors are corrected. This class would only be assigned to the elements after the element has encountered an error and has been corrected.

Has anyone attempted this sort of thing?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T13:28:44+00:00Added an answer on June 15, 2026 at 1:28 pm

    You could add an extender to the observable and subscribe to changes to the isValid property

    Like this

    ko.extenders.corrected = function(observable) {
        observable.isCorrected = ko.observable();
        observable.isValid.subscribe(function(value) {
            observable.isCorrected(value == true);
        });
    
        return observable;
    };
    

    http://jsfiddle.net/fkkJz/

    You need to manually bind the css

    <input data-bind="value: field, css: { corrected: field.isCorrected }"  />
    

    You could also do a little hack so that you do not need to manually bind css. This will override the value binding and check if it should inject a css binding
    http://jsfiddle.net/HuLWD/

    UPDATE: I needed this functionally my self due to a requirement and remembered this answer, but I also needed it to clear the corrected state if a second correct value was submitted, it can be achived like

    ko.extenders.corrected = function(observable) { 
        var state = observable();
        observable.isCorrected = ko.observable();
        observable.isValid.subscribe(function(value) {
            observable.isCorrected(value == true);
            state = observable();
        });
    
        observable.subscribe(function(value) {
            if(state !== value) {
                observable.isCorrected(false);
            }
        });
    
        return observable;
    };
    

    http://jsfiddle.net/HuLWD/1/

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using knockout and have an array Properties and each Property can have
I am using knockout.js plugin. I have created a custom validation rule named select
How can I do the following validation using knockout js? I have the following
I am using Knockout Validation and have everything working as I wanted. I am
I am using knockout.js and knockout.validation plugin. I have a search form which contains
I just started using knockout.js and it works great with normal bidings. I have
I’m working on a project that is using knockout.js and jQuery Mobile. I have
I have a fiddle in which i am using knockout.js. I created a custom
I am using knockout.js & knockout.validation plugins. I am adding the example fiddle http://jsfiddle.net/hsnCW/1/
I am using jQuery mobile and Knockout.js to test the first example on http://knockoutjs.com/documentation/foreach-binding.html

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.