newforms icon indicating copy to clipboard operation
newforms copied to clipboard

Allow overide defaultValidators

Open ngonhan2k5 opened this issue 9 years ago • 0 comments

Ex: override message

const LoginForm = forms.Form.extend({
    email: forms.EmailField({validators: [EmailValidator({message:'my customize email invalid msg'})] }),
    password: forms.CharField({widget: forms.PasswordInput})
  }
)

ngonhan2k5 avatar Nov 30 '16 11:11 ngonhan2k5