com.smartgwt.client.widgets.form.validator
Class FloatRangeValidator
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.FloatRangeValidator
public class FloatRangeValidator
- extends Validator
Tests whether the value for this field is a floating point number within the range specified. The max and min
properties on the validator are used to determine the acceptable range. 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.
Fields inherited from class com.smartgwt.client.core.JsObject |
jsObj |
Method Summary |
float |
getMax()
Return the max. |
float |
getMin()
Return the min. |
void |
setMax(float max)
Set the max. |
void |
setMin(float min)
Set the min. |
Methods inherited from class com.smartgwt.client.widgets.form.validator.Validator |
addValidatorDefinition, convertToValidatorArray, getClientOnly, getDependentFields, getOrCreateRef, getStopIfFalse, getStopOnError, getType, getTypeAsString, getValidateOnChange, setClientOnly, setDependentFields, setErrorMessage, setStopIfFalse, setStopOnError, setType, setType, setValidateOnChange |
Methods inherited from class com.smartgwt.client.core.DataClass |
doAddHandler, fireEvent, getAttribute, getAttributeAsBoolean, getAttributeAsDate, getAttributeAsDouble, getAttributeAsDoubleArray, getAttributeAsFloat, getAttributeAsInt, getAttributeAsIntArray, getAttributeAsJavaScriptObject, getAttributeAsLong, getAttributeAsMap, getAttributeAsObject, getAttributeAsRecord, 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, setAttribute, setAttribute, setAttribute |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
FloatRangeValidator
public FloatRangeValidator()
setMin
public void setMin(float min)
- Set the min.
- Parameters:
min
- the min
getMin
public float getMin()
- Return the min.
- Returns:
- the min
setMax
public void setMax(float max)
- Set the max.
- Parameters:
max
- the max
getMax
public float getMax()
- Return the max.
- Returns:
- the max