<sas:MinimumValueCompositeValidator>

A MinimumValueCompositeValidator is a validator that validates (1) the value is present, (2) that the value is numeric, and (3) that the value is not less than the minimum value specified.

Syntax

<sas:MinimumValueCompositeValidator
   [id="value"]
   [instantiate="true|false"]
   [minValue="int"]
   [ref="java.lang.String"]
   [scope="page|request|session|application"]>
      [<sas:DateStringValidator .../>]
      [<sas:HexColorStringValidator .../>]
      [<sas:IntegerInputValidator .../>]
      [<sas:MaximumLengthValidator .../>]
      [<sas:MaximumValueValidator .../>]
      [<sas:MinimumValueValidator .../>]
      [<sas:NumericInputValidator .../>]
      [<sas:RequiredStringValidator .../>]
      [<sas:SetProperty ...>
         The value to set on the parent tag
      </sas:SetProperty>]
      [Additional <sas:SetProperty> tags...]
</sas:MinimumValueCompositeValidator>

Attributes

idCase-sensitive name used to identify the object instance.
instantiateFlag that, if true, indicates that a new instance of the underlying class should be loaded if one cannot be found in PageContext. Must be used with an id attribute.
minValuethe minimum value to use.
refThe variable String value that represents an object created earlier in the same scope.
scopeThe scope (or page context) within which the reference is available.

More Information

To view the documentation for the related TransformationBean, see com.sas.servlet.tbeans.util.validators.MinimumValueCompositeValidator.

If you need to subclass the tag handler class for the sas:MinimumValueCompositeValidator tag, extend com.sas.taglib.servlet.tbeans.util.validators.MinimumValueCompositeValidatorTag.