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.

 

Field Label Tag Attributes

You can use the following attributes with custom field and parameter labels:

notUseLabelStyle

Set this attribute to "true" if you do not want the Label Text style defined in the system settings or user preferences for both Edit and Read-only mode to be applied to a custom field or parameter label.

You can then use a style sheet or the style attribute to define the font color and size of the label. If you do not use a style sheet or the style tag, the field label is set to the General Text settings defined in system settings or user preferences.

Form

<TCLABEL NAME="LastReviewDate" notUseLabelStyle="true"/>

Block

<tc:label name="LastReviewDate" category="EMPL" notUseLabelStyle="true" />

<tc:wizardParameterLabel name="LastReviewDate" notUseLabelStyle="true" />

notUseRequiredFieldStyle

Set this attribute to "true" if you do not want the Required Field style defined in system settings or user preferences to be applied to a label of a required custom field or parameter.

You can then use your style sheet or the Style tag to define the font color and size of the label. If you do not use a style sheet or the Style tag, the field label is set to the General Text settings defined in system settings or user preferences.

Form

<TCLABEL NAME="LastReviewDate" notUseRequiredFieldStyle="true" />

Block

<tc:label name="LastReviewDate" category="EMPL" notUseRequiredFieldStyle="true" />

<tc:wizardParameterLabel name="LastReviewDate" notUseRequiredFieldStyle="true" />

isFieldRequired

Set this attribute to "true" if you want to make a Label Only field required, for example, when it is associated with another required field. you can also use this attribute to make the label of a custom field required when this field is made required through a rule or its attribute is included in the unique ID pattern for custom object records.

Form

<TCLABEL NAME="LastReviewDate" isFieldRequired="true" />

Block

<tc:label name="LastReviewDate" category="EMPL" isFieldRequired="true" />

<tc:wizardParameterLabel name="LastReviewDate" isFieldRequired="true" />

For details on system settings, see Working with Admin Settings.

Note: To learn more about the style sheets, refer to an HTML or XML reference guide.

  • Was this article helpful?