2 Replies Latest reply on Apr 22, 2010 9:27 AM by nimo22

    rich:listShuttle - render column only for targetBox

    nimo22

      I use a rich:listShuttle and want to add extra column only for the target-box.

       

      My Problems is: I have no (boolean) property which indicates, if this is the source or target-box.

       

      <rich:listShuttle ...


      <rich:column>    

      <h:outputLabel value="..."/>
      </rich:column>


      <rich:column id="column_only_for_target_Box" rendered="#{sourceBox}">    

      <h:outputLabel value="..."/>
      </rich:column>


      </rich:listShuttle>

       

      You see, I want to render the column "column_only_for_target_Box" only for the target-box of the rich:listShuttle. How can I do that?