5 Replies Latest reply on Feb 13, 2008 3:59 AM by ilya_shaikovsky

    help with listShuttle...

    renatohonjo

      Hi, I'm trying to dinamically show a listShuttle.
      My first attempt was:

      <a4j:outputPanel layout="none">
       <rich:listShuttle id="test_list_shuttle" rendered="#{myBean.myTest}">
       ...
       <\rich:listShuttle>
      </a4j:outputPanel>
      

      obs: the reRender attribute is "test_list_shuttle"
      The listShuttle was rendered, but all of it's controls were not enabled.

      My second attempt was:
      <rich:panel id="test_list_shuttle">
       <c:if teste="${myBean.myTest}">
       <rich:listShuttle>
       ...
       <\rich:listShuttle>
       <c:if>
      </a4j:outputPanel>
      

      obs: the reRender attribute is "test_list_shuttle"
      Again, the listShuttle was rendered, but all of it's controls were not enabled.

      Is there any way to solve this problem?

      Thanks.