Skip to content Skip to sidebar Skip to footer

How To Validate An Value Submitted By A Spinner

i am finishing off a web app, and want to put validation on my spinner, it should only let the user submit a value of between 1 and 50, however what i want is if a user deleted the

Solution 1:

Try add this one:

<f:validateLongRange minimum="1" maximum="50" />

Post a Comment for "How To Validate An Value Submitted By A Spinner"