Skip to main content
Mitratech Success Center

Client Support Center

Need help? Click a product group below to select your application and get access to knowledge articles, webinars, training content, and release notes or to contact our support team.

Authorized users - log in to create a ticket, view tickets status and check your success plan details.

 

List Field Tag Attributes

This guide provides an overview of List Field Tag Attributes.

type

Turns a list field, which by default is a drop-down list, into a radio button list. Enter "radio" to set the list field as a radio button list. For example:

Form

<TCFIELD NAME="PerformanceReview" type="radio" />

Block

<tc:field name="PerformanceReview" category="EMPL" type="radio" />

Note: You can define wizard parameters of type List as drop-down, radio, or check box lists (see Defining Parameters).

size

Controls the height of list fields by specifying the number of rows in the list to be displayed. For example:

Form

<TCFIELD NAME="Gender" size="20" />

Block

<tc:field name="Gender" category="EMPL" size="20" />

<tc:wizardParameter name="Gender" size="20" />

allowNullValue

Includes a null value as the first item in a drop-down list. Enter "true" to include a null value in the list. That way, no item is selected by default.

Important: The allowNullValue attribute must be set to use nullValueDisplayString.

nullValueDisplayString

Specifies the first item displayed in a drop-down or radio button list. Enter a message that should appear as the first item in the list, such as Choose One. For example:

Form

<TCFIELD NAME="Gender" allowNullValue="true" nullValueDisplayString="Please Select One" />

Block

<tc:field name="Gender" category="EMPL" allowNullValue="true" nullValueDisplayString="Please Select One" />

<tc:wizardParameter name="Gender" allowNullValue="true" nullValueDisplayString="Please Select One" />

forceSelect and forceSearch

If forceSelect=true, the field will display a drop-down list when used as a search view filter criterion. If forceSearch=true, the field will instead display a search module field with auto-suggest functionality.

  • Was this article helpful?