I have this code
<h:selectOneRadio value="#{MyBean.valueAttr}" >
<f:selectItem itemLabel="Button1"/>
<f:selectItem itemLabel="Button2" />
<f:selectItem itemLabel="Button3" />
</h:selectOneRadio>
I wanted to know if there is a way to set up the Button3
as the chosen button (default) initially.
Thanks