1 Reply Latest reply on Jan 23, 2012 2:56 PM by dannylex

    selectManyCheckbox inside popupPanel

    dannylex

      This is my code:

      <rich:popupPanel id="optionsPane" autosized="true">
          <div><h1 style="width:100%; text-align: center"> <h:outputText value="Opciones de Conferencia"/></h1></div>
          <h:form prependId="false">
      
      
              <h:outputText value="Adm."/>
              <h:selectManyCheckbox id="userOptions"  value="#{tbMeetmeController.noVarusuItems}"  layout="pageDirection">
                  <f:selectItems value="#{tcMeetmevarController.itemsAvailableSelectMany}"  />
              </h:selectManyCheckbox> 
              <h:outputText value=""/><br/>
              <a4j:commandButton value="Guardar" actionListener="#{tbMeetmeController.updateAction}"  oncomplete="#{rich:component('optionsPane')}.hide(); return false;" />
      
              </h:form> 
      </rich:popupPanel>
      

       

       

      The method inside my bean controller is never invoked. I have tried removen the SelectManyCheckbox control and using a simple InputText and it works so I think that the problem is with SelectManyCheckbox control. I have tried using h:commanbutton and the problem remains. I'm using:

       

      JSF 2

      Richfaces 4

      Mozilla Firefox

       

       

      Any kind of help will be very appreciated. Thanks in advance.