Summary
Tag name:
<tr:validateLongRange>
type:
org.apache.myfaces.trinidad.LongRange
Validate that the value entered is within a given range.
Example(s):
<tr:inputText id="mdf3" value="#{bean.value}"
label="max validator">
<tr:validateLongRange maximum="#{bean.maxValue}"/>
</tr:inputText>Attributes
| Name | Type | Supports EL? | Description |
|---|---|---|---|
| maximum | long | Yes | The maximum long value of the entered value. |
| messageDetailMaximum | String | Yes |
The detail error message to be used for constructing faces messages,
when input value exceeds the Parameters:
|
| messageDetailMinimum | String | Yes |
The detail error message to be used for constructing faces messages,
when input value is less than the set Parameters:
|
| messageDetailNotInRange | String | Yes |
The detail error message to be used for constructing faces messages,
if input value is not with in the range, when
Parameters:
|
| minimum | long | Yes | The minimum long value of the entered value.. |