How to insert icons in JSF?

Asked

Viewed 482 times

2

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

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

imagem-exemplo

1 answer

4


You may be using the commandLink together with the graphicImage, example:

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

Browser other questions tagged

You are not signed in. Login or sign up in order to post.