Yes, but with 1.09 I use:

class MyBean{
private Boolean id;

public Boolean getId();
..........
and this works correctly; with 1.1 I need

public String getIdStr(){
  return id.toString();
}

and

<h:selectOneRadio value="#{bean.idStr}">
        <f:selectItem itemValue="#{person.id}"/>
</h:selectOneRadio>
for a correct selection.

Thank you



Sent from the MyFaces - Users forum at Nabble.com.

Reply via email to