'section.GroupName.Order#.celldelim' parameter
The .celldelim is used to combine what would normally be two input fields in two different table rows into one table row cell.
In the following example, Address Lines 1, 2, and 3 are combined in the same table cell and an HTML <BR> tag is used between them. The result is that these address lines are grouped; address line 1, followed by address line 2 and 3, all in one cell. They all use the same label that is provided in the first address lines 'label' which is 'Address Lines.' If the .celldelim parameter is not configured, then each address line has its own table row that uses individual labels.
# Example of celldelim parameter
section.Addr.attrcode=SRVAD
section.Addr.1.method=setStLine1
section.Addr.1.label=Address Lines
section.Addr.1.class=
section.Addr.1.value=
section.Addr.1.size=25
section.Addr.1.celldelim=<BR>
section.Addr.2.method=setStLine2
section.Addr.2.label=Address Line 2
section.Addr.2.class=
section.Addr.2.value=
section.Addr.2.size=25
section.Addr.2.celldelim=<BR>
section.Addr.3.method=setStLine3
section.Addr.3.label=Address Line 3
section.Addr.3.class=
section.Addr.3.value=
section.Addr.3.size=25
section.Addr.3.celldelim=<BR>
section.Addr.4.method=setStLine4
section.Addr.4.label=Address Line 4
section.Addr.4.class=
section.Addr.4.value=
section.Addr.4.size=25
section.Addr.5.method=setZipCode
section.Addr.5.label=ZIP
section.Addr.5.class=
section.Addr.5.value=
section.Addr.5.size=25
.celldelim can contain any valid HTML tag. For example, can be used to have a phone area on the same line as the phone number as shown here:
#Start of Section 2
section.Phone.attrcode=SPHNA
section.Phone.1.method=setPhArea
section.Phone.1.label=Telephone
section.Phone.1.class=
section.Phone.1.value=
section.Phone.1.size=5
section.Phone.1.celldelim=
section.Phone.2.method=setPhNumber
section.Phone.2.label=
section.Phone.2.class=
section.Phone.2.value=
section.Phone.2.size=9
section.Phone.2.hint=(111) 555-1212