Chandrasekhar kotha wrote:Hi
can some one help me in defaulting "selectOneRadio" in Oralce Adf. I need to select one radio buttion on load of page.
any ideas??
thanks
chandra.
hi Chandrasekhar
you can use the fallowing code to get selectOneRadio in Oracle ADF
<af:selectOneRadio value="#{bean.aValue}" required="true">
<f:selectItem itemLabel="Option1" itemValue="1"/>
<f:selectItem itemLabel="Option2" itemValue="2"/>
<f:selectItem itemLabel="Option3" itemValue="3"/>
</af:selectOneRadio>