3 Replies Latest reply on Oct 28, 2008 3:31 AM by nbelaevski

    Hiding the icons on the tree

    pmaho6

      I need to hide the icons used on the tree. I have been able to do this using some CSS:

      .dr-tree-h-ic-line-exp {
      display:none;
      }
      .dr-tree-h-ic-facets {
      width: 0px !important;
      }

      and then defining the icon facets:

      <f:facet name="icon">
      <h:outputText value="" />
      </f:facet>
      <f:facet name="iconLeaf">
      <h:outputText value="" />
      </f:facet>

      but obviously this is a bit of a hack. Is there, or could there be a better way?

      Thanks