TaggedClientWidget

This rule can be configured to add the Watch/UnWatch button on Client Screen. If the rule is not configured, the system displays the following default columns defined by the <Result> element for the widget.

  • ClientName
  • TaxID
  • Address
  • PhoneNumber
TaggedClientWidget: Elements And Attributes
Element/Tag Attributes Parent Element Description Element/Attribute Values
<TaggedClientWidget>     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>   <TaggedClientWidget> 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.

Note: All the groups supported for Client search Screen result set is supported for TaggedClientWidget.

 
<DataType>   <Table> Defines the datatype of the field.  

XML Schema

<TaggedClientWidget TITLE="[String]" COMMENT"[String]">
<Results>
<Table NAME="">
<Column ALIGN="" FORMAT="">
<Display></Display>
<Name></Name>
<Group></Group>
<DataType></DataType>
</Column>
</Table>
</Results>
</TaggedClientWidget>

XML Example

<TaggedClientWidget TYPE="Client" TITLE="Watch List - TaggedClient">
<Results>
<Table>
<Column ALIGN="LEFT">
<Name>TypeCode</Name>
<Display>Type</Display>
<DataType>Text</DataType>
<Group>Client</Group>
</Column>
<Column ALIGN="CENTER">
<Name ITALICS="Yes">LastName</Name>
<Display ITALICS="Yes">Last Name</Display>
<DataType>Text</DataType>
<Group>Client</Group>
</Column>
<Column ALIGN="RIGHT">
<Name>TaxID</Name>
<Display>Tax ID</Display>
<DataType>Text</DataType>
<Group>Client</Group>
</Column>
<Column ALIGN="LEFT">
<Name>RoleCode</Name>
<Display>Asscoiated Role</Display>
<DataType>Text</DataType>
<Group>Role</Group>
</Column>
<Column ALIGN="LEFT">
<Name>Address</Name>
<Display>Address</Display>
<DataType>Text</DataType>
<Group>Address</Group>
</Column>
<Column ALIGN="LEFT">
<Name>PhoneNumber</Name>
<Display>Phone Number</Display>
<DataType>Text</DataType>
<Group>Address</Group>
</Column>
</Table>
</Results>
</TaggedClientWidget>