Home | Ajax | BioInformatics | Dojo | EAI | EJB | Hibernate | J2ME | Java | Java Glossary | Java Servlets | JavaScript | Jboss | JDBC | JDO | Jmeter | JSF | JSP | JUnit | Maven | MySQL | Spring Framework | SQL | Struts | Technology | WAP | Web Services | XML
 
 
Search All Tutorials
  

 
Programming Tutorials: Ajax | Articles | JSP | Bioinformatics | Database | Free Books | Hibernate | J2EE | J2ME | Java | JavaScript | JDBC | JMS | Linux | MS Technology | PHP | RMI | Web-Services | Servlets | Struts | UML
 
JSF
  JDO Tutorials
  EAI Articles
  Struts Tutorials
  Java Tutorials
  Java Certification
  Java Applet
Questions
Comments

JSF actionListener Tag

                          

This tag is used to add a action listener to the component associated with the enclosing tag. When user does an event on the component then this  action takes place. The class where this action is defined implements ActionListener interface. In this example this class is "MyBean.java" in roseindia package. Within this class a method processAction() is written, where we write our logic of action.

Code Description :

<%@ page contentType="text/html" %>
<%@ 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 id="form1">
<h:commandButton id="button1" value="Click">
<f:actionListener type="roseindia.MyBean" />
</h:commandButton>
</h:form>
</body>
</html>
</f:view>

MyBean.java :

package roseindia;

import java.util.*;
import javax.swing.*;
import javax.faces.event.*;

public class MyBean implements ActionListener,ValueChangeListener{
String som = "";
private Date today = new Date();
public void processAction(ActionEvent e){
JOptionPane.showMessageDialog(null,"Hi");
}


public void processValueChange(ValueChangeEvent ce){
JOptionPane.showMessageDialog(null, ce.getSource());
}

public String getSom(){
return som;
}

public void setSom(String som){
this.som = som;
}

public Date getToday(){
return today;
}

public void setToday(Date today) {
this.today = today;
}
}

Rendered Output : This is the first page that appears to the user. There is one form button which when clicked renders a message dialog as it is shown in the second picture below.

 

Html Source Code :

<html>
<body>
<form id="form1" method="post" action="/f-tags/pages/actionListener/actionListener.jsf" enctype="application/x-www-form-urlencoded">
<input id="form1:button1" type="submit" name="form1:button1" value="Click" />
<input type="hidden" name="form1" value="form1" /></form>
</body>
</html>

This tag contains one attribute :

type : This attribute is used to specify the fully qualified  name of the class which has implemented ActionListener interface and implemented processAction() method.

                          

Facing Programming Problem?
Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 

Current Comments

3 comments so far (post your own) View All Comments Latest 10 Comments:

<core:view>
<html:form id="searchQAForm">
<TABLE border=0 width="100%">
<TR>
<TD align="right">
<html:outputText>Category : </html:outputText>
<html:selectOneMenu id="searchQABackingBean" value="#{SearchQABackingBean.categoryID} ">
<core:selectItems value="#{SearchQABackingBean.categoryList}" />
</html:selectOneMenu>
<html:outputText>Search</html:outputText>
<html:inputText id="searchText" value="#{SearchQABackingBean.searchText}"/>
<html:commandButton value="Submit" action="#{SearchQABackingBean.getSearchQuestionAnswerResult}" />
</TD>
</TR>
</TABLE>
</html:form>
</core:view>

I am able to access the properties of Bean(categoryID) but not able to call the backing bean Method (getSearchQuestionAnswerResult) above
on button click.

Posted by Subhasish Mohanty on Friday, 08.8.08 @ 14:21pm | #71775

i have write this example as it is?
(Copy&past)
but JOptionPane des not appere i have to set Navigation rule nd manged bean but it still does not work?????
it appere that he is trying to do something but nothing happend ?

Posted by Hassan on Saturday, 12.15.07 @ 23:31pm | #42539

Trying to display a JOptionPane (using Sun System Server 9) hangs the server (popup blocking turned off).

Posted by Joe on Friday, 08.3.07 @ 20:36pm | #22588

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.

Java String toLowerCase Example
Java String toCharArray Example
Java String substring Example
Java String indexOf Example
Java String startsWith Example
Java String hashCode Example
Java String matches Example
Java String length Example
Java String lastIndexOf Example
Java String isEmpty Example
Java String equalsIgnoreCase Example
Java String equals Example
Java String endsWith Example
Java String copyValueOf Example
Java String contentEquals Example
  EAI Articles
  Java Certification
Tell A Friend
Your Friend Name
Search Tutorials

 

 
 
Browse all Java Tutorials
Java JSP Struts Servlets Hibernate XML
Ajax JDBC EJB MySQL JavaScript JSF
Maven2 Tutorial JEE5 Tutorial Java Threading Tutorial Photoshop Tutorials Linux Technology
Technology Revolutions Eclipse Spring Tutorial Bioinformatics Tutorials Tools SQL
 

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

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

Copyright © 2008. All rights reserved.