Frameworks| Hibernate| Struts| JSF| JavaFX| Ajax| Spring| DOJO| JDO| iBatis| Questions?

 

 

 

 

 

 

 

 

 

 

 

 

 

Search Tutorials

Latest Questions
Comments
 
JSF validateLongRange Tag 
 

This is one of the standard validators provided by JSF to check whether the local value entered in the corresponding input component is within the certain range.

 

JSF validateLongRange Tag

                          

This is one of the standard validators provided by JSF to check whether the local value (a numeric value or any string that can be converted to a long.) entered in the corresponding input component is within the certain range. This range is specified by minimum and maximum attributes of this tag. The page author requires no code to write for validation. Simply use this tag in the nearest enclosing input component. If there is any fault in filling the input component then the error message flashes to show this error.

Code Description :

<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>

<f:view>
<html>
<body>
<h:form>
<h:inputText id="it" value="#{MessageBean.a}">
<f:validateLongRange maximum="30" minimum="15"/>
</h:inputText>
<h:message for="it"/><br><br>
<h:commandButton value="submit" />
</h:form>
</body>
</html>
</f:view>

Rendered Output :
This is the first screen that will be rendered to the user.

When the user enters the value out of the range from 15 to 30 then validation error is displayed specifying that the user has not entered the correct value. Figure below shows this fact :

Html Source Code :

<html>
<body>
<form id="_id0" method="post" action="/coretag/pages/validateLongRange.jsf" enctype="application/x-www-form-urlencoded">
<input id="_id0:it" type="text" name="_id0:it" value="" />
<br><br>
<input type="submit" name="_id0:_id2" value="submit" />

<input type="hidden" name="_id0" value="_id0" /></form>
</body>
</html>

This tag contains two attributes :

maximum : This attribute is used to set the maximum value allowed for this component  to input
minimum :
This is used to set the minimum value allowed to be entered in the component.

                          

» View all related tutorials
Related Tags: c com memory server dynamic tree components core component tag name this node oo ibm create root like for example

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Training Courses
Tell A Friend
Your Friend Name
Software Solutions
Least Viewed
Most Rated
Recently Viewed
Search Tutorials

 

 
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Indian Software Development Company | iPhone Development Company in India | Flex Development Company in India | Java Training Delhi | Java Training at Noida |

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2008. All rights reserved.