Create new RichFaces Documentation Jira issue

This will launch the RichFaces Jira page - to complete your feedback please login if needed, and submit the Jira.

JBoss.orgCommunity Documentation

6.9.6.  < rich:nodeSelectListener > available since 3.1.0

expand all
6.9.6.1. Description
6.9.6.2. Key Features
6.9.6.3. Details of Usage
6.9.6.4. Reference Data

The <rich:nodeSelectListener> represents an action listener method that is notified after selection of a node.

The <rich:nodeSelectListener> is used as a nested tag with <rich:tree> and <rich:treeNode> components.

Attribute "type" defines the fully qualified Java class name for listener. This class should implement org.richfaces.event.NodeSelectedListener . interface

The typical variant of using:


...
<rich:tree switchType="server" value="#{project.data}" var="item" nodeFace="#{item.type}">
    <rich:nodeSelectListener type="demo.ListenerBean"/>
    ...
    <!-- Tree nodes --> 
    ...
</rich:tree>
...

Java bean source:

package demo;

import org.richfaces.event.NodeSelectedEvent;
public class ListenerBean implements org.richfaces.event.NodeSelectedListener{
    ... 
    public void processSelection(NodeSelectedEvent arg0){
        //Custom Developer Code 
    }
    ...
}

Table of <rich:nodeSelectListener> attributes.