Let’s say Form1 inherits after Form2. Form 1 has fields one, two, three. Can I define a method clean_one in Form2 (so clean for field inherited from other form) ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
I presume you mean that Form2 inherits from Form1. In which case yes, you can define a clean method on the subclass that cleans fields defined on the superclass.