-
Couldn't load subscription status.
- Fork 297
Closed
Description
validation: function() {
return {
username: {
required: true,
msg: ''
},
password: {
minLength: 8
},
rePassword: {
equalTo: 'password',
msg: 'The passwords does not match'
},
name: {
required: true,
msg: ''
},
address: {
required: false,
msg: ''
},
email: {
required: true,
msg: ''
}
};
}
the rePassword and password is always not match even if it is match
im using Backbone.Validation v0.9.1
with model.preValidate()
Metadata
Metadata
Assignees
Labels
No labels