Group Tag

Purpose

The GEN:Group tag allows you to group several code generation tags.  The group is displayed as a node in the tree control in the page’s Properties dialog so you can easily identify the set of tags enclosed in the group.

The Group tag does not have any properties and it does not generate any code.

Used In

HTML Layout Pages and Page Templates

Code Generation Tag Attributes

Attribute

Required

Description

Name

Yes

The name of this tag.  This name must be unique within the file and cannot contain spaces.

File

No

Specifies the default component to use.  You can change the specific component to point to a different component in the tag’s Properties dialog.

Examples

     <GEN:Group Name=”EmployeeFields”>
          <GEN:FieldValue Name=”FirstName”/>
          <GEN:FieldValue Name=”LastName”/>

          <GEN:FieldValue Name=”Address”/>

          <GEN:FieldValue Name=”City”/>

          <GEN:FieldValue Name=”State”/>

          <GEN:FieldValue Name=”ZipCode”/>

     </GEN:Group>