The ORM documentation states the following
Warning
when using delegation inheritance, methods are not inherited, only fields
I am using delegation inheritance, but I need the children models to keep the behavior of the parent on every field. This means that @onchange, @constrains, @depends and every other method should exist in the children models.
The only way I can think of for this to work is to copy every method signature and call the parent's method from within. Is there an easier and more maintainable/scalable way?