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.
- Re: AW: selectOneRadio in myfaces 1.1 Caroline Jen
- Re: AW: selectOneRadio in myfaces 1.1 stefanom (sent by Nabble.com)
- Re: AW: selectOneRadio in myfaces 1... Bruno Aranda

