How to modify a tree component dinamically

Hi to everybody. I'm a problem with RichTree component when I try to run my application in jdeveloper 11g.
In jsp page I have a RichInputText and a button component. When you click on the button, it modifies one String type variable: it stores the same value of RichInputText component.
After that the applicatiion should show a tree that use the modified variable before, but when I click on the button an exception occurs:
javax.faces.el.EvaluationException: java.lang.NullPointerException
     at org.apache.myfaces.trinidad.component.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:51)
     at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)
     at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:190)
     at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:458)
     at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:763)
     at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._invokeApplication(LifecycleImpl.java:640)
     at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:275)
     at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:175)
     at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
     at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
     at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
     at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
     at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
     at oracle.adf.share.http.ServletADFFilter.doFilter(ServletADFFilter.java:61)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
     at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:85)
     at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:279)
     at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._invokeDoFilter(TrinidadFilterImpl.java:239)
     at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:196)
     at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:139)
     at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
     at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:149)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
     at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
     at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3496)
     at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
     at weblogic.security.service.SecurityManager.runAs(Unknown Source)
     at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2180)
     at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2086)
     at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1406)
     at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
     at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
Caused by: java.lang.NullPointerException
     at view.Tree_1.search(Tree_1.java:55)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:597)
     at com.sun.el.parser.AstValue.invoke(AstValue.java:157)
     at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:283)
     at org.apache.myfaces.trinidad.component.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:46)
     ... 34 more
I show the code in the following lines:
Sense represents the tree nodes.
----------------------------------Sense.java
public class Sense {
private String _name = null;
private List<Sense> _kids = null;
public Sense(String name){
setName(name);
public String getName(){ return _name;}
public void setName(String name){this._name = name;}
public List<Sense> getKids(){ return _kids;}
public void setKids(List<Sense> kids){this._kids = kids;}
-----------------------------------Tree_1.java
public class Tree_1{
private Object _instance = null;
private transient TreeModel _model = null;
private String _key;
private RichInputText inputText1;
public RichInputText getInputText1(){return this.inputText1;}
public void setInputText1(RichInputText inputText){
this.inputText1 = inputText;
public Tree_1() {
ArrayList<Sense> root = new ArrayList<Sense>();
Sense senso = new Sense(_key);
root.add(senso);
ArrayList<Sense> firstSon = new ArrayList<Sense>();
Sense senso2 = new Sense(_key+"2");
firstSon.add(senso2);
senso.setKids(firstSon);
this.setListInstance(root);
public TreeModel getModel() throws IntrospectionException {
if (_model == null) {
model = new ChildPropertyTreeModel(instance, "kids");
return _model;
public void setListInstance(List instance) {
_instance = instance;
_model = null;
public String search() {
_key = inputText1.getValue().toString();
return null;
-------------------------------------SenseView.jsp
<af:form>
<af:inputText label="Label 1" id="inputText1"/>
<af:commandButton text="commandButton 1" action="#{Tree_1.search}"/>
<af:tree var="node" value="#{Tree_1.model}"
inlineStyle="width:100%; height:100%;">
<f:facet name="nodeStamp">
<af:outputText value="#{node.name}" />
</f:facet>
<f:facet name="pathStamp"/>
</af:tree>
</af:form>
Any ideas? thank's a lot

Hi,
what is the scope of the bean ? the command button performs a page reload after which the key is empty again
Frank

Similar Messages

  • How to create dynamic tree component

    I am using netbeans 5.5 and visual web pack to develop my jsf application.
    I want to add a tree component that will be tied to a table with following columns:
    id,parent_id,name
    Actually the table stores data in tree structure with parent_id storing the parent of the row.
    So a row with parent_id = 0 will be the root nodes of the tree.
    When ever any root node is selected i want to fetch its children from the database and populate then as children of that parent node.
    The tree can go to any depth so i want to make my tree component dynamic enough to handle this requirement.
    How can i accomplish this.
    I just want to add listerner for the plus sign of every node so that when the plus sign of that node is clicked i just want to get the id of the corresponding node.

    What i'm trying to do is create an organizational structure.
    Global>Region>Plant-->Corporation
    The output from the RFC is a structure containing every possible combination for orgazational hierarchy. Basically a flat table with record for every possible combinaton of Region-Plant-Corporation. This data needs to be bound to a tree structure so that we can call BW queries based on that level. For example: Give me aged inventory for the SAP corporation within the plant Berlin that is located in the Europe region.
    Now that you understand the business reason will the nodes that represent Region and Plant and corporation be non-singleton nodes or recursive? I was thinking a hierarchy of non-singleton nodes.
    I can bind these nodes to the Region - Plant - Corporation elements returned from in the flat table structure. I will probably get duplicates as a specific Region will be listed multiple times for every possible combination of the data beneath it. I'm not so concerned about that right now as I want to make sure I understand how in Web Dynpro to bind the data to the tree.
    Hopefully this makes some sense. Can you elaborate on how this may be constructed in context of the view?
    Would i create a model node for region (0..n), model node for plant (0..n), and a model node for Corporation (0..n)?
    Or does this sound totally incorrect?
    julian
    We have 3 regions over 50 plants and probably around 500 corporations.

  • Displayed DOM on an tree, then how to modify the tree

    Hi,
    This my first time here.
    I have DOM object parsed from xml. I displayed it on a tree using following 2 classes. My question is how do I reload the treeModelAdapter when I update/insert the tree node? How do I implement valueForPathChanged(...) method? My tree didn't updated using the method.
    Note the methods in DefaultTreeModel do not work here.
    public class DomToTreeModelAdapter implements TreeModel{
    Element element;
    public DomToTreeModelAdapter(Element elem) {
    element = elem;
    public Object getRoot() {
    return new AdapterNode(element);
    public void valueForPathChanged(TreePath path, Object newValue) {
    AdapterNode adapter = new AdapterNode(element);
    Object currentNode = path.getLastPathComponent();
    Object parentNode = path.getPathComponent(path.getPathCount()-2);
    int[] index = {getIndexOfChild(parentNode, currentNode)};
    Object[] children = {(Object)newValue};
    TreeModelEvent ev = new TreeModelEvent(adapter, path, index, children);
    fireTreeNodesChanged( ev);
    private Vector listenerList = new Vector();
    public void addTreeModelListener( TreeModelListener listener ) {
    if ( listener != null && ! listenerList.contains( listener ) ) {
    listenerList.addElement( listener );
    public void removeTreeModelListener( TreeModelListener listener ) {
    if ( listener != null ) {
    listenerList.removeElement( listener );
    public void fireTreeNodesChanged( TreeModelEvent e ) {
    Enumeration listeners = listenerList.elements();
    while ( listeners.hasMoreElements() ) {
    TreeModelListener listener = (TreeModelListener) listeners.nextElement();
    listener.treeNodesChanged( e );
    public class AdapterNode {
    Node domNode;
    public AdapterNode(Node node) { 
    domNode = node;
    public String toString() { ...
    public AdapterNode child(int searchIndex) {
    org.w3c.dom.Node node = domNode.getChildNodes().item(searchIndex);
    int elementNodeIndex = 0;
    for (int i=0; i<domNode.getChildNodes().getLength(); i++) {
    node = domNode.getChildNodes().item(i);
    if (node.getNodeType() == ELEMENT_TYPE )
    && elementNodeIndex++ == searchIndex) {
    break;
    return new AdapterNode(node);
    public int index(AdapterNode child) {
    int count = childCount();
    for (int i=0; i<count; i++) {
    AdapterNode n = this.child(i);
    if (child.toString().equalsIgnoreCase(n.toString())) { return i; }
    return -1; // Should never get here.
    I also added listener class:
    public class DomTreeModelListener implements TreeModelListener {
         Element element;
         public DomTreeModelListener(Element elem){
              element = elem;
         public void treeNodesChanged(TreeModelEvent e) {
              //DefaultMutableTreeNode node;
    Object node = e.getTreePath().getLastPathComponent();
    System.out.println("node: " + node);
    try {
    int index = e.getChildIndices()[0];
    System.out.println("index: " + index);
    //node = node.getChildAt(index);
    node = new DomToTreeModelAdapter(element).getChild(node, index);
    } catch (NullPointerException exc) {}
    What is the problem?
    Thank you in advance for any help.

    I ment give us a runnable code that demenstrates your problem, try and duplicate it... Dont post use a 5000line class, just one that shows the problem,
    ie create a new class that just does what your one is supose to with out all the bits and pieces, if if works then work from there, else post that code.
    ps did you also read the code formating tags

  • Tree component in Flex 4

    Are there any known issues with the <mx:Tree component in Flex 4?
    We have upgraded from Flex 3 builder to Flex 4 builder. Everything works except any where we have used a tree component the data is no longer showing. Has there been a change in how to populate the Tree component? We populate the tree by setting the dataProvider with an ArrayCollection.

    @travr,
    I'm not aware of any big known issues in mx:Tree between Flex 3.x and Flex 4.x. What problems are you seeing, and can you reproduce the issue with a simple test case (if so, please post the simple test case here and we can take a look).
    This works in Flex 3.5:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
        <mx:ApplicationControlBar dock="true">
            <mx:Button id="sdkVer" initialize="sdkVer.label = mx_internal::VERSION;" click="System.setClipboard(sdkVer.label);" />
        </mx:ApplicationControlBar>
        <mx:Tree id="tr" labelField="name" width="200" x="20" y="20">
            <mx:dataProvider>
                <mx:ArrayCollection>
                    <mx:Object name="1. One">
                        <mx:children>
                            <mx:Object name="1.1 One" />
                            <mx:Object name="1.2 Two" />
                        </mx:children>
                    </mx:Object>
                    <mx:Object name="2. Two">
                        <mx:children>
                            <mx:Object name="2.1 One" />
                        </mx:children>
                    </mx:Object>
                </mx:ArrayCollection>
            </mx:dataProvider>
        </mx:Tree>
    </mx:Application>
    And this seems to work in Flex 4.5/Hero beta:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx">
        <s:controlBarContent>
            <s:Button id="sdkVer" initialize="sdkVer.label = mx_internal::VERSION;" click="System.setClipboard(sdkVer.label);" />
        </s:controlBarContent>
        <mx:Tree id="tr" labelField="name" width="200" x="20" y="20">
            <mx:dataProvider>
                <s:ArrayCollection>
                    <fx:Object name="1. One">
                        <fx:children>
                            <fx:Object name="1.1 One" />
                            <fx:Object name="1.2 Two" />
                        </fx:children>
                    </fx:Object>
                    <fx:Object name="2. Two">
                        <fx:children>
                            <fx:Object name="2.1 One" />
                        </fx:children>
                    </fx:Object>
                </s:ArrayCollection>
            </mx:dataProvider>
        </mx:Tree>
    </s:Application>
    Peter

  • JDev10g: Using a Tree component based on different queries.

    Hello,
    I've been doing some research on how to implement a tree component in ADF which I got working. However I need to implement a tree component that uses several different queries.
    The parent node would be one query, the child/leaf nodes would be based on another query but still related to the parent.
    For Example: 'select parent_nodes from mydatabase' then 'select child_nodes from mydatabase where child_nodesID = parent_nodesID'
    This will ultimately have to branch down more levels but I'm not sure exactly how to achieve this. I'm thinking I have to create new View Objects but I'm not sure exactly how to do that either.
    Thank you in advance.

    For an SQL query on a database use a View Object. First, you will need to create a new Entity object to represent each table in the database you need to use in the queries. Once you have created your view objects with their correct SQL queries, you need to specify how they are related. Example:
    RootView is all elements with ParentId of null.
    OtherView is all elements with ParentId not null.
    RootToOtherLink is a view link which links RootView.Id to OtherView.ParentId. You can specify this in the dialog. You will want to select all accessors available to make your life easier later, but make sure to name them something you will recognize, like "RootToOtherDestination".
    You will also need OtherToOther Link which links OtherView.Id to OtherView.ParentId. This starts the recursive nature of the hierarchical relationship.
    Once you have this set up, you will need to create an Application Module so that you have a data control you can bind your tree to. Set up the data model in a hierarchical fashion using your link.
    This will create a data control on the Data Controls pane you can drag onto your .jspx page. A menu will show up from which you can select tree component. This will take you to the tree binding dialog. Here is where all your work so far will pay off. You want to click the green plus button to add your RootView. Then, with the RootView selected you will want to hit the green plus again to select your destination accessor, such as "RootToOtherDestination" as mentioned earlier. This will show the OtherView as a child of the RootView. Finally, with OtherView selected you will want to hit the green plus again and select your other destination accessor, such as "OtherToOtherDestination". Select the attributes you want to have available to your tree at the bottom of the dialog and click ok.
    Your tree will show up. If you want to customize the way it looks or especially the attributes it displays in a node, those can be edited in the <af:tree> tag on your .jspx page.

  • Jdeveleoper- JSF- Tree component

    Hi,
    I am new to JSF and JDeveloper. I want to have a tree component using JSF. Any suggestions on how to create a tree component??
    regards,
    Meenakshi.S

    Hi, currently there is no JSF tree componenet. You can use ADF faces tree or
    myfaces tree2.

  • The Tree component

    Do any one know how to make the tree component transparent?
    I´ve tried a lot of different things but it doesn´t seem
    to work. I´ve tried to make it to a moviclip and drag the
    Alpha to 0 but then it doesn´t work at all. You can´t see
    the nodes..
    Please..
    [email protected]

    I have achieved this by placing the tree and data components
    within a container movie clip, and then changing the alpha of that
    container.
    It worked for me.

  • TREE component - basic

    Hi guys!
    Is there a tutorial somewhere that I can learn how to
    populate a tree
    component?
    Thanks!

    Thanks for the tip about "cross-posting".
    Now, I have seen the examples in the obvious place to have
    looked
    (adobe.com - thanks again!), but have a question:
    In the script below, if I wanted to load a movie.swf into a
    level (0, 1, 2,
    etc.) instead of a URL, how would I change it?
    <?xml version="1.0" encoding="iso-8859-1"?>
    <node>
    <node label="My Bookmarks">
    <node label="Macromedia Web site" url="
    http://www.macromedia.com"
    />
    <node label="MXNA blog aggregator" url="
    http://www.markme.com/mxna"
    />
    <node label="Creative">
    <node label="tryouts" />
    <node label="tests" >
    <node label="results" />
    <node label="finalizando">
    </node>
    <node label="Google" url="
    http://www.google.com" />
    </node>
    Note: I have CROSS-POSTED for the last time, as this post was
    in two forums,
    I decided to end it.
    "urami_" <[email protected]>
    escreveu na mensagem
    news:elg704$6qk$[email protected]..
    > Don't post same message to multiple forums. It's
    consider spamming, so
    > post to one and stick to it.
    >
    > Go to
    http://www.adobe.com/support/forums/guidelines.html
    >
    > Don't cross-post or double-post. Posting a message to
    more than one forum
    > (i.e "cross-posting" is unnecessary, and creates extra
    traffic for you and
    > others to read through. If you've already posted a
    question, please don't
    > repeat your posts in order to get more attention- this
    makes it very
    > difficult for others to see if and/or where your
    question was answered.

  • Modify the textArea component

    i need some help on how to modify the textArea component so
    that the scrollbar, sidebar and up/down arrow hit states are black.
    is there any script that i can write to change to these colors
    unstead of using the default component (silver) color that
    macromedia has.

    By defining them in the class and using the class name under component definition:
    [Inspectable(name="Text", type=String, defaultValue="")]
    public function set text(setText:String)
         textArea.text = setText;
    public function get text():String
         return textArea.text;
    A problem I run into is that the compiler errors prevent the parameters from being defined so I comment out every line that has to do with textArea, define the component, then uncomment them so that it'll work when it runs.

  • [F8] Tree Component: How can I hide/remove the scrollbar and border?

    I'm using the Tree Component in my Flash 8 Pro - Project. I'm
    trying to customize the look of the Tree component in two ways:
    1. Is there any way to remove the scrollbar from the Tree
    Component?
    2. Can I also remove the Border from the Tree Component?
    I checked the Component Inspector and couldn't find any
    options for the scrollbar nor the border.
    Does anyone know how to do this or could you point me in the
    right direction?
    Thanks

    You can use the Status-4-Evar extension to replace some functionality that was lost withthe removal of the Status bar in Firefox 4.
    Open the Customize window via "View > Toolbars > Customize" or via "Firefox > Options > Toolbar Layout" after you have installed the Status-4-Evar extension and drag the items (Status Text, Progress Meter, Download Status) upon the Add-ons Bar (View > Toolbars > [X] Add-on Bar)
    * Status-4-Evar: https://addons.mozilla.org/firefox/addon/235283/

  • How to modify default Space Around Component in NetBeans 6.0?

    Hi,
    Does anybody know how to modify the default Space Around Component in NetBeans 6.0? I use Panel and either they stick completely to the border or stand too far. I can't find any options to modify this in NetBeans 6.0. I have tried using the 'Space Around Component...' functionality, but as soon as I move an element, NetBeans automatically replaces the values I have entered with default values I am not interested in.
    Does anyone have the solution?
    Thanks!

    I think you just have to move the component holding the alt key... that way you can put the components wherever you want to..... it was alt, or shift, or another special key, try it... i don�t remember right now

  • Urgent ..How to use Tree component in a web based interface

    I want to make a Java web based windows explorer type interface.
    For that i want to use tree component .
    Is it possible for me to do this.
    Can anybody suggest me how to do ?

    Hi,
    I assume you plan to do this in a browser and you plan to use JTree. When using an applet, you'd have to make sure that the latest Java Plug-In is available on the client.
    If you not plan to use JTree, you could use a Tree component which is not based on swing such as the one at http://www.calcom.de/eng/dev/cctree.htm
    In this case still the browser would have to be 'Java enabled' by any kind of plug-in
    Ulrich

  • How to override the default height of tree component...

    Hi,
    Can anyone please tell me how to override the default height of <af:tree> component.
    Actual Problem:
    I have a PanelBox in which I have a ShowDetail component. ShowDetail contains Tree component. When I click on ShowDetail item the Tree component have to be displayed. But, PanelBox is expanding to TREE default height(27.27 ems) instead of expanding to exact height of Tree.
    How to manage this issue?
    Thanks
    -Sukumar

    Did you already try
               <af:treeTable value="#{bindings.DashProjectPhasesDev.treeModel}"
                                  var="node"
                                  selectionListener="#{bindings.DashProjectPhasesDev.treeModel.makeCurrent}"
                                  rowSelection="none" rowBandingInterval="0"
                             inlineStyle="width:810px; height:1100px;"> Check the last line with inlineStyle...
    Julian

  • How to create a view(Component Tree)?

    After I look at the source codes of the RestoreViewPhase.java and ViewHandler,I find that "createView" only to get an instance of the UIViewRoot class,and not add any children at all.So I want to know how JSF can get the component Tree from the "createView" method?

    In fact if the first time a page is accessed, the component tree is only complete AFTER the render response. I must agree that this is lousy. In fact Smile supports a non-JSP model where the component tree is constructed at createView() time. Which allows you to do some initialisation for your new page/screen.
    In the JSP model you have to go through managed beans or setup context upfront, which you don't want because you want the init code for a screen be coded together with that screen.
    In fact I'm still looking for a way to stick with the spirit of the specs, but have a common way to have some 'event handler' that allows you to setup some context when a new screen is accessed.
    Dimitry D'hondt. (http://smile.sourceforge.net)

  • How do I traverse a tree component ?

    How do I traverse a tree component ?
    I tried the following but it only returns 1 row. The dataprovider is XML.
    var datalength:Number = mytree.dataProvider.length;
    Alert.show(String(datalength));
    for ( var i:Number = 0; i < datalength; i++)
          Alert.show(mytree.dataProvider.getItemAt(i).@label); 

    I went with the following approach
    for each  
    (var attribute:XML in treeSource..@*)
         Alert.show((attribute.parent( ).@label
         +
    ": " + attribute.name( ) + "=" + attribute));}

Maybe you are looking for

  • "An unknow error occurred (-50)" when downloading.

    iTunes 10.7.0.21 on Windows 7 Service Pack 1. Recently purchased my first .mp3 from the Store. Received a receipt so payment should be ok. Still, every time I "Check for Available Downloads..." from the Store menu, I get this error message stating "T

  • Nokia 5230 v40.0.003 - Contacts Bar Missing

    Hi there, thanks for reading. I have a problem with my Nokia 5230. I've had my phone about 9 months, and I've been very happy with it. Today I finally got round to installing the v40.0.003 firmware update. All went well except... Ovi Maps not updatin

  • Iphoto 11 upgrading problems

    I just bought the new version of iphoto 11 and i installed it through the app store on my mac. When iphoto opened, it told me that i need to update my library because iphoto doesn't work with the previous version i had. I clicked update and it told m

  • Calling another  report by passing selection screen parameter

    Hi, I have created a report "ZREPA" with selection screen parameter say, "creator". Nw, i hv to call that report "ZREPA" from another report say "ZREPB" by passing an value to the selection screen field "creator". Can anyone tell me how to resolve th

  • A4j integration with an existing datatable

    Hi, I am new in using ajax. Could any body help me out in adding ajax4jsf for a datatable so that only the contents of the datatable will get reloaded not the entire page.