3 Replies Latest reply on Aug 24, 2008 1:59 PM by nbelaevski

    Dynamic Tree

    rare

      hi i want to make a dynamic tree but i failed to do that here is my code

       <rich:tree style="width:300px" value="#{prog_mise_a_niveau.bpman.mytree}" var="item" nodeFace="gfdg">
      
      
       </rich:tree>
      


      and the backend is

      
      HtmlTreeNode nod = new HtmlTreeNode();
      
      nod.setId("hello");
      
       this.bpman.getMytree().getChildren().add(nod);
      
      


      i want to see in my tree one node which takes values hello
      thank you