Side navigation
#4730 closed bug (invalid)
Opened June 04, 2009 09:43PM UTC
Closed February 05, 2010 08:32PM UTC
[validate] remote callback does not remove error from this.invalids
Reported by: | aditya_advani | Owned by: | joern |
---|---|---|---|
Priority: | major | Milestone: | 1.4 |
Component: | plugin | Version: | 1.3.2 |
Keywords: | validate | Cc: | |
Blocked by: | Blocking: |
Description
in methods object, in the remote: function, in the success callback I had to add " delete validator.invalid[element.name];" in if (response) block, shown below
if ( response ) {
var submitted = validator.formSubmitted;
validator.prepareElement(element);
validator.formSubmitted = submitted;
validator.successList.push(element);
delete validator.invalid[element.name];
validator.showErrors();
}