3 Replies Latest reply on Jan 18, 2008 2:42 PM by nightiger

    togglePanel binding (and Duplicate id) ¬¬

      When I use the "binding" of togglePanel !
      Any request that I made .. Is the error (Duplicate id)
      I remove the "bindind".. The error does not happen
      I use for the binding (UITogglePanel and HtmlTogglePanel) the result is equals...


      My toggle is very simple... :

      <rich:togglePanel switchType="client"
      initialState="open"
      stateOrder="close, open"
      binding="#{menuBean.uiToogle}"
      id="semID" >

      <f:facet name="close">
      <rich:toggleControl>
      <rich:toolTip followMouse="true" direction="top-right" delay="500">
      <h:outputLabel value="menssgem"/>
      </rich:toolTip>
      </rich:toggleControl>
      </f:facet>

      <f:facet name="open"></f:facet>
      </rich:togglePanel>



      My Bean :

      private HtmlTogglePanel uiToogle;


      public HtmlTogglePanel getUiToogle() {
      return uiToogle;
      }

      public void setUiToogle(HtmlTogglePanel uiToogle) {
      this.uiToogle = uiToogle;
      }