I use Apache MyFaces 2.0.2 on WebSphere Application Server 8.
How do I get the key of a DualTreeBidiMap in a in JSF 2.0?
The DualTreeBidiMap provides a getKey(Object Value) or get(Object Key) method.
I have the Value in another ManagedBean, so I want to print out the Key for this Value with EL.
I've tryed something like this:
<h:outputText value="#{bean1.dualTreeBidiMap.key(bean2.value)}" />
But this does not work.