I\'m writing a product using Python Dexterity Type, and I have Title
and Description
, this fields come from a behavior plone.app.dexterity.be
Since you got your own Dexterity Type you can handle with form directives
aka setting taggedValues
on the interface.
from plone.autoform import directives
class IYourSchema(model.Schema):
directives.order_before(collage='IDublinCore.title')
collage = schema.TextLine(
title=u'Collage',
)
You find excellent documentation about this feature in the plone documentation http://docs.plone.org/external/plone.app.dexterity/docs/reference/form-schema-hints.html#appearance-related-directives