I have a command link as below.
<h:commandLink value="Home" action="homePage">
</h:commandLink>
This is working fine, but I need a image instead of text value. The image has to act as a command link.
How can I achieve this?
I have a command link as below.
<h:commandLink value="Home" action="homePage">
</h:commandLink>
This is working fine, but I need a image instead of text value. The image has to act as a command link.
How can I achieve this?
You should remove
value
attribute and put<h:graphicImage>
inside<h:commandLink>
.