I used form inheritance to create a new form, for instance:
class MyForm(ParentForm):
employment_date = colander.SchemaNode(
colander.Date(),
title=_(u'Employment Date')
)
Lets say the order of the ParentForm fields is
- name
- biography
I want the new field, employment_date to be inserted after the email field, i.e.
- name
- employment_date
- biography
I want to achieve this without redefining the fields in my schema.