Documentation

Search 

Contents

  1. Introduction
  2. Getting Started
  3. Trinidad Concepts
  4. Code View Support
  5. Design View Support
  6. Tag Object Toolbars
  7. Server Behaviors
  8. Property Inspectors
Selected 9. Trinidad Tag Reference

10. Trinidad Core Tag Reference

Contents > Trinidad Core Tag Reference > tr:validateLength

tr:validateLength

The tr:validateLength tag checks that the string is the specified length.

Example

<tr:validateLength></tr:validateLength>

HTML Output

(No output.)

Tag Attributes

id Text
 
The unique identifier value for this component. The value must be unique within the closest naming container.
maximum Text
 
The maximum attribute sets the maximum value allowed for this component.
messageDetailExact Text
 
The messageDetailExact attribute sets a custom error message with the parameters {0} for a label to identify the component, {1} for the value from the user and {2} the allowed value, when the input is not the allowed value and both the maximum attribute and the minimum attribute have the same value.
messageDetailMaximum Text
 
The messageDetailMaximum attribute sets a custom error message with the parameters {0} for a label to identify the component, {1} for the value from the user and {2} the maximum value, when the input is after the value specified by the maximum attribute.
messageDetailMinimum Text
 
The messageDetailMinimum attribute sets a custom error message with the parameters {0} for a label to identify the component, {1} for the value from the user and {2} the minimum value, when the input is before the minimum value.
messageDetailNotInRange Text
 
The messageDetailNotInRange attribute sets a custom error message with the parameters {0} for a label to identify the component, {1} for the value from the user, {2} the maximum value, and {3} the minimum value, when the input is outside of the range of values.
minimum Text
 
The minimum attribute sets the minimum value allowed for this component.