Form components and inheritance. Possible?

maybe you can share your attempts at multiple inheritance. Inheritance in anvil should work just like it does in python.

e.g.

class A:
  def foo(self):
    return 'bar'

class Form1(Form1Template, A):
   ...

# instances of Form1 now have a foo method.

2 Likes