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.

 

Memo Text Field Tag Attributes

rows

Sets the height of memo text fields by specifying the number of rows for the memo text field. For example:

Form

<TCFIELD NAME="Comments" rows="10" />

Block

<tc:field name="Comments" category="EMPL" rows="10" />

<tc:wizardParameter name="Comments" rows="10" />

cols

Sets the width of memo text fields by specifying the number of columns for the memo text field. Enter a number to represent the width. For example:

Form

<TCFIELD NAME="Comments" cols="125" />

Block

<tc:field name="Comments" category="EMPL" cols="125" />

<tc:wizardParameter name="Comments" cols="125" />

wrap

Sets how line breaks are managed in memo text fields. The following values can be entered:

  • OFF—Restricts the browser from wrapping text, which forces the user to do it manually.
  • SOFT or VIRTUAL—Eliminates all the line break symbols from the element's value after the form is submitted. SOFT is only supported by Netscape Navigator browsers. VIRTUAL is only supported by Microsoft Internet Explorer browsers.
  • HARD or PHYSICAL—Maintains all the line break symbols in the element's value when the form is submitted. HARD is only supported by Netscape Navigator browsers. PHYSICAL is only supported by Microsoft Internet Explorer browsers.
    For example:

Form

<TCFIELD NAME="Comments" wrap="OFF" />

Block

<tc:field name="Comments" category="EMPL" wrap="OFF" />

<tc:wizardParameter name="Comments" wrap="OFF" />

  • Was this article helpful?