Search code examples
primefacesdatatablegraphicimage

unexpected symbol inside primefaces graphicImage


I have a graphicImage in a DataTable Colum.

My problem is that behind my icon I see a symbol like "^"

unexpected symbol

  • My xhtml:
<p:dataTable>   
<p:column>
<p:graphicImage 
       value="#{pageContext.contextPath}/style/images/done.png" 
       styleClass="ui-icon ui-icon-circle" 
       rendered="#{estudoObj.pending eq 0)}"/> 
</p:column>
  • My CSS:
.ui-icon-circle {
   width:20px; 
   height:20px; 
   border:0;
   margin: 0px 5px 0px 5px;
}

Solution

  • ui-icon has a background-image rule associated which you don't want in your case, you could add :

    background-image: none !important;

    to your ui-icon-circle or not use ui-icon at all.