Re: Abstract FormView

2011-11-04 Thread Kurtis Mullins
Great answer. Thanks a lot! On Thu, Nov 3, 2011 at 8:08 AM, Andre Terra wrote: > All you have to do is create a MyFormMixin class and add all those methods > you want to override. Usually you will want to call super() on the class so > that the normal behavior is also present in your final class

Re: Abstract FormView

2011-11-03 Thread Andre Terra
All you have to do is create a MyFormMixin class and add all those methods you want to override. Usually you will want to call super() on the class so that the normal behavior is also present in your final class. The difference between a Mixin and a full-fledged Class can be nearly non-existent in