I am passing Status
object to h:commandLink value. So it is displayed on the page. The problem is, displayed string is
packages.entity.Status@db2674c8
.
I created converter for Status
with annotation
@FacesConverter(forClass = Status.class, value = "statusConverter")
but it doesn't work. I tried to explicitly set it:
<h:commandLink value="#{result.status}" action="/view">
<f:converter converterId="statusConverter" />
</h:commandLink>
Then I got an error: /search-form.xhtml @57,58 <f:converter> Parent not an instance of ValueHolder: javax.faces.component.html.HtmlCommandLink@53e387f3
which is quite true, h:commandLink
is not ValueHolder
. Is there some way to convert value for h:commandLink
?