JSF 2 h selectManyListbox

JSF 2 h selectManyListbox


Posted in : Java Posted on : August 17, 2012 at 7:32 PM Comments : [ 0 ]

In this tutorial you will learn about the JSF 2 html selectManyListbox tag.

JSF 2 h selectManyListbox

In this tutorial you will learn about the JSF 2 html selectManyListbox tag.

The selectManyListbox tag of JSF 2 html tag library is used in the JSF applications to display more options. Using this tag you can select more than one options from the options list. A tag <h:selectManyListbox> is translated into the HTML code as follows :

<select multiple="multiple">
<option></option>
</select>

In this code an <option> list is rendered.

Attributes of JSF 2 h selectManyListbox

  • converter : This is not a required attribute. This attribute is used when you are required to use a converter class when the value of this element is submitted.
  • converterMessage : This is not a required attribute. This attribute is used to display a specified textual error message or displayed the error message related to conversion of element according to Converter class. The specified value of this attribute (i.e. an error message) may replace the message that comes from the Converter class.
  • id : This is not a required attribute. This attribute is used to make the component uniquely identifiable. Value of this attribute must be the unique within its closest parent.
  • immediate : This is not a required attribute. It evaluates an boolean expression. If this attribute is used with 'true' value it specifies that the value of component must be converted and validated in the Apply Request Values phase instead of expecting for the Process Validations phase.
     
  • rendered : This is not a required attribute. It evaluates a boolean expression. Presence of this attribute specifies that whether the current component should be rendered in the Rendered Response phase or not or worked on any later form submission. The default value of this attribute is defined to true.
     
  • required : This is not a required attribute. It evaluates a boolean value. If this attribute is present with value="true" it makes the options list required to select for the user.
  • requiredMessage : This is not a required attribute. This attribute is used to display text message for the 'required' (if present) attribute.
  • validator : This is not a required attribute. This attribute is used to when you are required to use a Validator class when the value of this element is submitted.
  • validatorMessage : This is not a required attribute. This attribute is used to display a specified textual error message or displayed the error message related to validaton of element according to the Validator class. The specified value of this attribute (i.e. an error message) may replace the message that comes from the Validator class.
     
  • value : This is not a required attribute. This attribute specifies the current value of the component.
  • valueChangeListener : This is not a required attribute but, is used when you are required to invoke a valueChangeListener method to notified on the change of component's new value.
     
  • accesskey : This is not a required attribute. This attribute is used to define an access key i.e create a shortcut key for the component which can be accessed by the combination (browser dependent combination) of Alt+accesskeyValue or Alt+Shift+accesskeyValue. When this key combination is pressed the focus will be transferred to the current element.
     
  • collectionType : This is not a required attribute. This attribute is used to specify the name of class of Collection type i.e. fully qualified name of class implementing java.util.Collection.
     
  • dir : This is not a required attribute. This attribute evaluates to the java.lang.String value which suggests the direction for the text that doesn't inherit the property of maintaining a direction (directionality). The allowable values are "LTR (Left-to-Right)" and "RTL (Right-to-Left)".
     
  • disabled : This is not a required attribute. It evaluates a boolean value which presence specifies that whether this component will be participated in the form submission or be get focused or not.
     
  • disabledClass : This is not a required attribute. This attribute is used to use the CSS style class on the disabled options.
  • enabledClass : This is not a required attribute. This attribute is used to use the CSS style class on the enabled options.
  • hideNoSelectionOption : This is not a required attribute. This attribute is used for hiding the options that are marked as 'no selection option'.
  • label : This is not a required attribute but, is used to specify the user presentable name for the current component.
  • lang : This is not a required attribute but, is used specify the language code.
  • onblur : This is not a required attribute. This attribute is used to execute a Javascript code, on the lossing of focus of the element.
  • onchange : This is not a required attribute. This attribute is used to execute a Javascript code, on lossing of focus of the element and on getting focus its value has been changed.
     
  • onclick : This is not a required attribute. This attribute is used to execute a Javascript code, on clicking over the element by a pointer button.
  • ondblclick : This is not a required attribute. This attribute is used to execute a Javascript code, on double clicking over the element by a pointer button.
  • onfocus : This is not a required attribute. This attribute is used to execute a Javascript code, on getting focus by the element.
  • onkeydown : This is not a required attribute. This attribute is used to execute a Javascript code, on the pressing down of key onto the element.
  • onkeypress : This is not a required attribute. This attribute is used to execute a Javascript code, on the pressing down of key and released onto the element.
  • onkeyup : This is not a required attribute. This attribute is used to execute a Javascript code, on the releasing of key over the element.
  • onmousedown : This is not a required attribute. This attribute is used to execute a Javascript code, on pressing down of the mouse pointer onto the element.
  • onmousemove : This is not a required attribute. This attribute is used to execute a Javascript code, on moving of the mouse pointer over the element.
  • onmouseout : This is not a required attribute. This attribute is used to execute a Javascript code, on moving of the mouse pointer away from the element.
  • onmouseover : This is not a required attribute. This attribute is used to execute a Javascript code, on moving of the mouse pointer over the element.
  • onmouseup : This is not a required attribute. This attribute is used to execute a Javascript code, on releasing of the mouse pointer button over the element.
  • onselect : This is not a required attribute. This attribute is used to execute a Javascript code, on selection of text by the user inside the element.
  • readonly : This is not a required attribute. This attribute evaluates an boolean expression which specifies that whether value of this element can be modified or not. However, if the readonly="true" elements will get the focus but the component's value will not be rendered.
     
  • size : This is not a required attribute. This attribute is used to specify the number of options (if available) to be shown. If not specified then all the available options will be displayed.
     
  • style : This is not a required attribute. This attribute is used to use CSS style/s on the component when rendered.
  • styleClass : This is not a required attribute but, is used to specify the applicable CSS style space-separated list to be applied at the time of rendering.
  • tabindex : This is not a required attribute that evaluates to a java.lang.String value specifies the tabbing order value. This value must be an integer within the range 0 to 32767.
     
  • title : This is optional attribute that evaluates a java.lang.String. This attribute is used to specify the title information about markup elements which will be displayed as tooltip.
     
  • binding : This is not a required attribute. This attribute evaluates to a javax.faces.component.UIComponent specified for linking the component with the property of backing bean.

Example :

An example is being given here will demonstrate you about how to use the JSF 2 h selectManyListbox tag and how to put the value into list through Map and get the value of the selected item/s. In this example I have created a JavaBeans where put the elements into a Map. And created the two JSF view pages into one of which input.xhtml page I have used this tag to display the options list and in the output.xhtml page I have used the <h:outputText> tag display the value of the selected option list.

Directory Structure

JsfSelectManyListbox.java

package devmanuals;

import java.util.Map;
import java.util.Arrays;
import java.util.LinkedHashMap;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.RequestScoped;

@ManagedBean(name="selectListbox")
@RequestScoped
public class JsfSelectManyListbox {

public String[] fruit;

public String[] getFruit() {
return fruit;
}
public void setFruit(String[] fruit) {
this.fruit = fruit;
}
private static Map<String,Object> fruitName;
static{
fruitName = new LinkedHashMap<String,Object>();
fruitName.put("Apple", "Apple");
fruitName.put("Mango", "Mango1");
fruitName.put("Guava", "Guava");
fruitName.put("Grapes", "Grapes");
fruitName.put("PineApple", "PineApple");
}

public Map<String,Object> getFruitName() {
return fruitName;
}
public String getFruitNameArray(){
return Arrays.toString(fruit);
}
}

input.xhtml

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core">

<h:head>
<title></title>
</h:head>
<h:body>
<f:view>
<h:form id="form1">
<h:selectManyListbox id="list1" value="#{selectListbox.fruit}" required="true"
requiredMessage="select at least one option" >
<f:selectItems value="#{selectListbox.fruitName}" />
</h:selectManyListbox> 
<br></br><h:message for="list1" style="color:red"/>
<br></br><h:commandButton value="submit" action="output" />

</h:form>

</f:view>
</h:body>
</html>

output.xhtml

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core">

<h:head>
<title></title>
</h:head>
<body>
<p>You have selected the following fruit/s : </p>
<h:outputText value="#{selectListbox.fruitNameArray}"></h:outputText>
</body>
</html>

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
<display-name>jsfHSelectManyListbox</display-name>
<welcome-file-list>
<welcome-file>input.xhtml</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>/faces/*</url-pattern>
<url-pattern>*.jsf</url-pattern>
<url-pattern>*.xhtml</url-pattern>
</servlet-mapping>
<context-param>
<description>State saving method: 'client' or 'server' (=default). See JSF Specification 2.5.2</description>
<param-name>javax.faces.STATE_SAVING_METHOD</param-name>
<param-value>client</param-value>
</context-param>
<context-param>
<param-name>javax.servlet.jsp.jstl.fmt.localizationContext</param-name>
<param-value>resources.application</param-value>
</context-param>
<listener>
<listener-class>com.sun.faces.config.ConfigureListener</listener-class>
</listener>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.faces</url-pattern>
</servlet-mapping>
</web-app>

How To Run

After copying the above code paste them to the respective files or by downloading the code from Download Source Code then start your web server and then use the following link http://localhost:8181/jsfHSelectManyListbox/input.xhtml in the address bar of the web browser.

Output :

When you will execute the above example you will get the output as follows :

1. The main page will look like as follows :

2. When, if you will click the submit button without selecting any one of the option list then an error will be displayed and the output will be as follows :

3. When, you will click on submit button by selecting the options list (to select more than one options use 'ctrl' key) then the output will be as follows :

The HTML source code of input.xhtml is as follows :

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head>
<title></title></head><body>
<form id="form1" name="form1" method="post" action="/jsfHSelectManyListbox/input.jsf" enctype="application/x-www-form-urlencoded">
<input type="hidden" name="form1" value="form1" />
<select id="form1:list1" name="form1:list1" multiple="multiple" size="5"> <option value="Apple">Apple</option>
<option value="Mango1">Mango</option>
<option value="Guava">Guava</option>
<option value="Grapes">Grapes</option>
<option value="PineApple">PineApple</option>
</select> 
<br />
<br /><input type="submit" name="form1:j_idt10" value="submit" /><input type="hidden" name="javax.faces.ViewState" id="javax.faces.ViewState" value="H4sIAAAAAAAAAJVSz2sTQRR+3STVpqHEGHIQ9FQEQSaGmoMGMcE2NLjVwFaweNBJMmkmzu6OM2+TTQ8F/wPBk1Dx6sGbf4F4EAQFPfo/ePTuzDa6AS3iwDzezr4f3/e+9+Y75KRWcGZMJ5REyAXZpnq0Q2Xu1Ld37yuPvmTAaUNehHTQpn0MVQdWcKSYHoViEMubTbCnMD1tbNHcLMLqMFR+7brgGmuRgrMP3KS4oME+udsbsz42nn2+/6qoLwkHIJY2S5qDsDx+yAdYj57AIWTMs/Pby9mA9OtQAbFFYzKkfaZJP/RlGLAAyb3OrV/+eleFkimc3WYzDfNTMh0VrKWItoLIX/xpYOQpouK9CJnWtiXMWS4nLO1dQrhgehIdBXME1gqGmrS6XbeztWlmWj8hgvtSkE02pJHA9vHjektKMdsNH7Pgx+vLe0fNcbNgsUwrUKjyQEZI4hH6wnS+djVzpRzHZgL1/5tAV/EJRbbI1ZLLI5RTvrsjii3FPIPTKJcuRUspOnONovHTr+dffKAvM7DUgazmBywR0JlmrTVJF/+OykPTe9vsDFMenTC19/HtjedHn3YccFxY6Quq9R3qM4RSsi1Vq03VM7CC/YYLeW1yBkkNhMpxBA+rHlOcCn5Ae4I1YiknllA50awirV2L07Xa+PdaWWf1JMmTetYUk7mVkrjyAve07bk/IOQshFqKQMr4JzL36pR7AwAA" autocomplete="off" />
</form></body>
</html>
Go to Topic «PreviousHomeNext»

Your Comment:


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

 
Tutorial Topics