TaggedCaseWidget
This rule can be configured to add the Watch/UnWatch button on NB Case Screens. If the rule is not configured, the system displays the following default columns defined by the <Result> element for the widget.
- CaseNumber
- CaseName
- Status
- Owner
- TaxID
| Element/Tag | Attributes | Parent Element | Description | Element/Attribute Values |
|---|---|---|---|---|
| <TaggedCaseWidget> | This is the start and end tag of the element. | |||
| TITLE |
Optional: Defines the display name that will appear at the top of the widget |
String | ||
| COMMENT |
Optional: Defines the description of Widget |
String | ||
| <Results> | <TaggedCaseWidget> | Optional: This is the start and end tag of the Results element. | ||
| <Table> | <Results> | Required element: The element that defines the screen as a table format and controls the display of results, formats results in a table. See Table Element. Mask attribute will not be supported. | ||
| <Column> | <Table> | The container element for column configuration. | ||
| <Display> | <Table> | Defines the header for the search result table column. | ||
| <Name> | <Table> | Specifies the database column in which the field values are stored. | ||
| <Group> | <Table> |
Indicates the table/screen that stores the field being referenced. All the groups supported for Case search Screen result set is supported for TaggedCaseWidget. |
||
| <DataType> | <Table> | Defines the datatype of the field. |
XML Schema
<TaggedCaseWidget TITLE="[String]" COMMENT"[String]">
<Results>
<Table NAME="">
<Column ALIGN="" FORMAT="">
<Display></Display>
<Name></Name>
<Group></Group>
<DataType></DataType>
</Column>
</Table>
</Results>
</TaggedCaseWidget>
XML Example
<TaggedCaseWidget TYPE="Case" TITLE="Watch List - New Business Case">
<Results>
<Table>
<Column ALIGN="LEFT">
<Name>CaseNumber</Name>
<Display>Number</Display>
<DataType>Text</DataType>
<Group>Case</Group>
</Column>
<Column ALIGN="LEFT">
<Name>CaseName</Name>
<Display>Name</Display>
<DataType>Text</DataType>
<Group>Case</Group>
</Column>
<Column ALIGN="CENTER">
<Name ITALICS="NO">StatusCode</Name>
<Display BOLD="Yes">Status</Display>
<DataType>Text</DataType>
<Group>Case</Group>
</Column>
<Column ALIGN="RIGHT">
<Name>PolicyNumber</Name>
<Display>Application Number</Display>
<DataType>Text</DataType>
<Group>Policy</Group>
</Column>
<Column ALIGN="CENTER">
<Name>FirstName</Name>
<Display>Insured First Name</Display>
<DataType>Text</DataType>
<Group ROLECODE="37">Client</Group>
</Column>
</Table>
</Results>
</TaggedCaseWidget>