I have a <p:dataTable var="object">
with a <p:commandLink>
inside. In my bean I have a Map
whose value I want to display in <p:commandLink value>
. I need to pass a key to this map which is a concatenation of "someString"
and #{object.firstName}
. I would something like this to work:
value="#{bean.map['someString'+object.firstName]}"
How can I achieve this?