I\'m trying to make use of the Star Rating component from PrimeFaces. However, it does not allow you to pass in parameters. That makes it impossible for me to do a lookup
have you tried to use f:setPropertyActionListener in your button so that you can send any parameter you want to your action class? or you have to do it inside the p:rating?
or you can do something like
private Rating rating;
//getter -setter
and in your action bean, you can access this value ((UIParameter)rating.getChildren().get(0)).getValue();
if this is the case, you may be doing sth wrong as this shouldn't be the case while you are using JSF.
just my two cents...