自分で作成したフィールド定義内の既存の動作から継承したフィールドを並べ替えるにはどうすればよいですか。たとえば、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>
ところで。これを行うためのより読みやすい方法はありますか?