I have a Dexterity-based content type with the IRelatedItems behavior enabled using:

<property name="behaviors">
  <element value="plone.app.relationfield.behavior.IRelatedItems" />
</property>

I want to render the list of related items on my template but I don't know how to do it.

Any hints?

link|improve this question

80% accept rate
feedback

3 Answers

up vote 4 down vote accepted

Found it: first the custom view has to be a display form, so it must derive from plone.directives.dexterity.DisplayForm:

class MyCustomView(dexterity.DisplayForm):
    grok.context(IMyContentType)
    grok.require('zope2.View')

Then you can use something like this on your page template:

<fieldset id="related-items" tal:condition="context/relatedItems">
    <legend i18n:translate="">Related items</legend>
    <tal:relateditems tal:content="structure view/w/IRelatedItems.relatedItems/render" />
</fieldset>
link|improve this answer
feedback

Isn't this what you are looking for?

link|improve this answer
Almost; the documentation is not updated and it doesn't explain how to use the widget in a template. – hvelarde Aug 4 '11 at 0:06
feedback

You could consider using the standard dexterity relation behaviour:

plone.app.dexterity.related.IRelatedItems

With this behaviour, related items automatically appear in the content's standard view.

Giacomo

link|improve this answer
2  
That behavior is deprecated in plone.app.dexterity since v1.0.1; you have to use the one in plone.app.relationfield. Also I need to use my own view, not the standard one. – hvelarde Aug 4 '11 at 0:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.