Hi everybody,
I'm trying to add a param to a link.
The normal behaviour looks like this:
Code:
<ice:commandLink actionListener="#{bean.link}" value="Details">
<f:param name="xyz" value="1" />
</ice:commandLink>
In the next step I replaced the value of the link by an image but without any params:
Code:
<ice:commandLink actionListener="#{bean.link}">
<ice:graphicImage url="image.gif" />
</ice:commandLink>
So far so good. But in a further step I would like to add the param attribute to the link:
Code:
<ice:commandLink actionListener="#{bean.link}">
<ice:graphicImage url="image.gif">
<f:param name="xyz" value="1" />
</ice:graphicImage>
</ice:commandLink>
My problem is, that I don't get any params in my managed bean. Any ideas?
Thanks in advance!