Is there a way to call multiple methods from backing bean in JSF?
I have something like this:
<h:outputLink value="#{bean.selectedEntry.link}">
<h:graphicImage
url="/CMS/button.png"
alt="button"></h:graphicImage>
</h:outputLink>
I want to execute some other method from Bean when user click on outputLink. It is possible?
P.S I’m using JSF 1.2
Replace it by
<h:commandLink>.E.g.
with