com.smartgwt.client.widgets.form.validator
Class LengthRangeValidator
java.lang.Object
com.smartgwt.client.core.JsObject
com.smartgwt.client.core.DataClass
com.smartgwt.client.widgets.form.validator.Validator
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.
Fields inherited from class com.smartgwt.client.core.JsObject |
jsObj |
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 java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
LengthRangeValidator
public LengthRangeValidator()
setMin
public void setMin(Integer min)
- Set the min.
- Parameters:
min
- the min
getMin
public Integer getMin()
- Return the min.
- Returns:
- the min
setMax
public void setMax(Integer max)
- Set the max.
- Parameters:
max
- the max
getMax
public Integer getMax()
- Return the max.
- Returns:
- the max