8 Replies Latest reply on Jan 16, 2008 7:12 AM by ilya_shaikovsky

    listShuttle and a4j:keepAlive

    trajber

      When I'm using an listShuttle and a4j:keepAlive together, the action's h:commandButton is not invoked. And when a simply remove the a4j:keepAlive entry everything goes back to normal again.
      The code...

      <h:form>
      <!-- when I remove this line, it works -->
      <a4j:keepAlive beanName="personScheduler" />
      
      <rich:listShuttle var="people" sourceValue="#{personScheduler.in}" personScheduler.out}" converter="personConverter">
      <h:column>
      <h:outputText value="#{person.name}" />
      </h:column>
      </rich:listShuttle>
      <h:commandButton action="#{personScheduler.save}" value="ok" />
      </h:form>
      


      It's possible to use them together ? How ?