I have a form schema that inherits from another form. Both have fieldsets . However, field sets are placed in the order in which they are created. Thus, the field string described in the last diagram will be the last. I would like this to be the first. Is there any way to do this?
Example:
from plone.supermodel import model from zope import schema class FormSchema(model.Schema): model.fieldset( 'test', label='Test', fields=['field1'] ) field1 = schema.Text(title=u'test') class FormSchema2(FormSchema):
source share