I'm writing a product using Python Dexterity Type, and I have Title
and Description
, this fields come from a behavior plone.app.dexterity.behaviors.metadata.IDublinCore
, but I neeed reorder this fields with my fields.
Example:
My fields: document, collage, age, biography
IDublinCore: Title, Description
The order: collage, Title, document, age, biography, Description
How I Do it?
Since you got your own Dexterity Type you can handle with
form directives
akasetting taggedValues
on the interface.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
How about using Jquery? (Since the fieldsets are using Jquery anyway)
For example to move Tags under Summary....
Note: This is a copy of my answer here