How to insert icons in JSF?

2

In a registration form I have to insert edit and delete icons in a form made in JSF.

<h:commandLink action="#{clienteController.editar}">Editar

    
asked by anonymous 29.09.2017 / 18:41

1 answer

4

You may be using commandLink together with graphicImage , example:

<h:commandLink action="#{clienteController.editar}">
    <h:graphicImage value="img/imagem.png" />
</h:commandLink>
    
29.09.2017 / 20:25