I have read about passing parameters from jsf page to managedbean through actionListener. Is it also possible to pass a parameter to a simple action method?
Thank y
The new spec. JSF2 allows that the action method receives a param so you be able to do
at the ManagedBean the method will be:
public String action(Object complexObject)
*Note: make sure you include the “el-impl-2.2.jar” *