Clusters

As with developing in UIM, the EUIM Cluster Node is used to group UI elements together. There are a number of attributes available for specifying the number of columns, the label and description text. There are also 3 special attributes, create, modify and view, that allow the Cluster to be hidden, or shown on different screens, allowing a different layout to be used on create screens versus modify ones.

The following code creates one Cluster that is visible on create and modify pages only, and has a label specified by the property Cluster.Label in the associated properties file, as well as a second Cluster that is only shown on view pages.

<Clusters>
        <Cluster label="Cluster.Label" create="Yes" view="No">
        ...
        </Cluster>
        <Cluster label="Cluster2.Label" create="No" modify="No">
        ...
        </Cluster>
      </Clusters>