Hello iam trying to get a parameter in my Managed-Bean:
<tc:link action="" label="dummy">
<f:param name="test" value="test"/>
</tc:link>
In my Managed-Bean
public String dummy(){
FacesContext context = FacesContext.getCurrentInstance();
Map map = context.getExternalContext().getRequestParameterMap();
test = (String) map.get("test");
System.out.println("ParamTest: "+test);
return "index";
}
But i only get nothing -> null, it is possible to parse a param with f:param? I saw the improvement
http://issues.apache.org/jira/browse/TOBAGO-78
and so i updated to 1.0.9 snapshot version from the repository but it is still not working.
Pleas tell me somebody what my failure is or how i can parse a Parameter in Tobago.
Does updateAcitonListener working in Tobago?
Big THX
-kai
- Tobago f:param or updateActionListener Kai Jemella
- Re: Tobago f:param or updateActionListener Bernd Bohmann

