如何重新排序从我自己编写的字段定义中的现有行为继承的字段。例如,我想使用 plone.app.contenttypes 中的 Leadimage 字段(行为),但不是将它放在我定义的所有字段的底部,而是希望在描述之后使用它。
我试过这样:
<property name="model_source">
<model xmlns:security="http://namespaces.plone.org/supermodel/security"
xmlns:marshal="http://namespaces.plone.org/supermodel/marshal"
xmlns:form="http://namespaces.plone.org/supermodel/form"
xmlns="http://namespaces.plone.org/supermodel/schema">
<schema>
<field name="image" type="plone.namedfile.field.NamedBlobImage" form:after="description">
<title>Image</title>
</field>
</schema>
</model>
</property>
顺便说一句。有没有更易读的方法来做到这一点?