Screenshots

Ajax search

Ajax search

List view

List view

Detail view

Show view

BackEnd

Backend

Examples

Examples

Image groups

The extension uses the OpenImmo structure. OpenImmo defines groups for each image to make the usage of the image easier. You can name the groups as you like. It makes it easier if you want for example to get the property layout and display it on another section of the page.

Group 2
Group 1

Now you can do something like that:

<f:for each="{property.attachmentsRel}" as="attachment" iteration="iterator">
  <f:for each="{attachment.attachmentGroupValueRel}" as="groupValue">
    <f:if condition="{groupValue.value} == 'Grundriss'">
      <f:image image="{attachment.file}"/>
    </f:if>
  </f:for>
</f:for>