I have this component:
<t:outputText value="#{bean.name}">
I want to call a method with a parameter in the EL expression instead of calling a getter, but I don't have JSF 2.0.
How can I pass a parameter to a method in the backing bean using EL expression without JSF 2.0?
In other words, I want to do something like this:
<t:outputText value="#{bean.findName(#{bean.name})}">
Outer expression: To call a method with a parameter in the backing bean.
Inner expression: To call a getter to use as a parameter in the method.
The method in the backing bean:
public String findName(String name){
}
Thanks ahead! :)