문제

I have simple treeTable. http://www.primefaces.org/showcase/ui/treeTable.jsf I want to change expand and collapse icon of this treeTable. How can I do that?

도움이 되었습니까?

해결책

If you want to use custom icons (images), override the following CSS classes for their respective uses, on the treetable:

  • ui-icon : to customise the expanded-row state icon (the triangle)

     .ui-icon {
          width: 16px;
          height: 16px;
          background-image: url("/your-image-here");
      }
    
  • ui-icon-triangle-1-e ui-c : to customize the collapsed-row state icon

If you want to use more modern fontAwesome 'icons', see Change icon from jQuery UI to FontAwesome in PrimeFaces

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top