Table Element
The Table element is used to format Search and Inquiry screen results.
| Element/Tag | Attribute | Definition | Element/Attribute Value and Description |
|---|---|---|---|
|
<Table> |
Controls the display of results. This tag formats results in a table. |
||
|
<Column>
|
ALIGN |
The container element for column configuration. |
String "Left", "Center", "Right" (Case-insensitive) Defines the data alignment of the column. |
| FORMAT |
String "Text", "Currency", "Date" Allows formatting of data |
||
|
<Display> |
|
Defines the header for the table column. |
String |
|
BOLD ITALICS |
Optional: Render bold or italicized representation of table columns’ headings. Table column headings are always in bold. Adding the BOLD attribute and setting it to Yes is transparent. Note: This attribute is only supported for Inquiry screen configuration. |
Yes: The table column's heading will be displayed in bold and/or italics. No: The heading will display without bold or italics. |
|
|
<Name> |
|
Specifies the database column in which the field values are stored. |
String |
|
BOLD ITALICS |
Optional: Renders bold or italicized representation of table columns’ contents. Note: This attribute is only supported for Inquiry screen configuration. |
Yes: The table column's contents will be displayed in bold and/or italics. No: The heading will display without bold or italics. |
|
|
<Group> |
|
Indicates the table/screen that stores the field being referenced. The value used should be appropriate for the screen being configured. |
String Examples: Activity |
|
ROLECODE |
RoleCode from AsRole table. |
||
|
<DataType> |
|
Defines the datatype of the field. |
String |
| MASK |
Optional: Used to specify the mask that will validate and format the field data for display purposes. |
Any mask name that has been defined. |
XML Example
<Table>
<Column ALIGN="LEFT">
<Display>Payee Social Security Number</Display>
<Group>Client</Group>
<Name>LastName</Name>
<Datatype MASK="SSN">Text</Datatype>
</Column>
<Column ALIGN="LEFT">
<Display>Policy Number</Display>
<Group>Policy</Group>
<Name>PolicyNumber</Name>
<DataType>Text</DataType>
</Column>
<Column ALIGN="LEFT" TOTAL=”Yes”>
<Display>Amount</Display>
<Group>Disbursement</Group>
<Name>DisbursementAmount</Name>
<DataType>Money</DataType>
</Column>
<Column ALIGN="LEFT">
<Display>Transaction Name</Display>
<Group>Transaction</Group>
<Name>TransactionName</Name>
<DataType>Text</DataType>
</Column>
<Column ALIGN="LEFT">
<Display>Processor</Display>
<Group>Activity</Group>
<Name>ClientNumber</Name>
<DataType>Text</DataType>
</Column>
</Table>