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
Yes. Either:
action="#{bean.method(param)}"
Or
(and use the bean property in the method)