2 Replies Latest reply on Sep 24, 2008 10:50 AM by nofreak

    tooltip in listShuttle

    nofreak

      Hi,
      is there a way to use the tooltip inside the listshuttle component for each element?
      I use it following:

      <rich:listShuttle sourceValue="#{group.availableRoles}"
       targetValue="#{group.assignedRoles}" var="role" listHeight="280"
       listWidth="300" sourceCaptionLabel="Verfuegbare Rollen"
       targetCaptionLabel="Zugewiesene Rollen"
       converter="roleListShuttleconverter"
       fastOrderControlsVisible="false" orderControlsVisible="false" id="listShuttleR" rowKeyVar="keyVar">
       <rich:column>
       <h:outputText value="#{role.key}"></h:outputText>
       <rich:toolTip styleClass="infoMessage">
       <h:outputText value="Test"/>
       </rich:toolTip>
       </rich:column>
      </rich:listShuttle>

      but it's not display on mouseover. The listShuttle works fine.