What’s wrong: <h: commandButton value = "...? UserId = # {...}"
The whole syntax is below
<h:commandLink action="CustomerDetails?faces-redirect=true&customerId=#{item.id}" value="#{item.name}"/>
It is inside a dataTable, so explain the use if item. But the above code gives me
Not a Valid Method Expression: CustomerDetails?faces-redirect=true&customerId=#{item.id}
I can't seem to concatenate a string and an EL expression. It is made that many inside the attribute valueshould be something with the attribute action. Has anyone got a solution for this?
+3