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

 

 

 

 

 

 

 

 

 

 

 

 

 

Search Tutorials

Latest 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.

 

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.

                          

» 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 

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

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.