2 Replies Latest reply on Apr 15, 2011 5:26 AM by nbelaevski

    Issue in dynamic rendering of AjaxCommandLink when coming through menu

    vinay123acc

      Hi, am facing an issue in dynamic rendering of ajax command link when coming through menu[sometimes renders and sometimes wont].The menthod which is binded to prepare ajax command link itself wont get called sometimes n hence not rendereing.

       

       

      Please let me know reason for this problem and how to handle this.

       

       

      Sample code snippet used in application:

       

       

      SamplePageBean.java

       

       

      private JsfPanelGridColOne linksGrid;

       

      public JsfPanelGridColOne getLinksGrid() {

              return linksGrid;

      }

       

       

      public void setLinksGrid(JsfPanelGridColOne linksGrid) {

              this.linksGrid = linksGrid;

      }

       

      public boolean isLinks() {

       

       

      AjaxCommandLink acl = new AjaxCommandLink();                        

      acl.setValue("");

      acl.setOnclick(getWindowOpen());

      getLinksGrid().getChildren().add(acl); 

       

      return true;

      }

       

       

      SampleLink.xhtml

       

       

      <h:jsfPanelGridColOne id="privateLink" rendered="#{sample.links}" binding="#{sample.linksGrid}"/>

       

       

      Thanks and Regards

      Vinay BN