com.smartgwt.client.widgets.form.validator
Class LengthRangeValidator

java.lang.Object
  extended by com.smartgwt.client.core.JsObject
      extended by com.smartgwt.client.core.DataClass
          extended by com.smartgwt.client.widgets.form.validator.Validator
              extended by com.smartgwt.client.widgets.form.validator.LengthRangeValidator

public class LengthRangeValidator
extends Validator

This validator type applies to string values only. If the value is a string value validation will fail if the strings length falls outside the range specified by validator.max and validator.min. Note that non-string values will always pass validation by this validator type. Note that the errorMessage for this validator will be evaluated as a dynamicString - text within ${...} will be evaluated as JS code when the message is displayed, with max and min available as variables mapped to validator.max and validator.min.


Field Summary
 
Fields inherited from class com.smartgwt.client.core.JsObject
jsObj
 
Constructor Summary
LengthRangeValidator()
           
 
Method Summary
 java.lang.String getMax()
          Return the max.
 java.lang.String getMin()
          Return the min.
 void setMax(java.lang.String max)
          Set the max.
 void setMin(java.lang.String min)
          Set the min.
 
Methods inherited from class com.smartgwt.client.widgets.form.validator.Validator
getClientOnly, getOrCreateRef, getStopIfFalse, setClientOnly, setErrorMessage, setStopIfFalse
 
Methods inherited from class com.smartgwt.client.core.DataClass
doAddHandler, fireEvent, getAttribute, getAttributeAsBoolean, getAttributeAsDate, getAttributeAsDouble, getAttributeAsFloat, getAttributeAsInt, getAttributeAsIntArray, getAttributeAsJavaScriptObject, getAttributeAsMap, getAttributeAsObject, getAttributeAsString, getAttributeAsStringArray, getAttributes, getHandlerCount, getJsObj, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute
 
Methods inherited from class com.smartgwt.client.core.JsObject
isCreated, setJsObj
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

LengthRangeValidator

public LengthRangeValidator()
Method Detail

setMin

public void setMin(java.lang.String min)
Set the min.

Parameters:
min - the min

getMin

public java.lang.String getMin()
Return the min.

Returns:
the min

setMax

public void setMax(java.lang.String max)
Set the max.

Parameters:
max - the max

getMax

public java.lang.String getMax()
Return the max.

Returns:
the max