Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
<h:selectOneRadio id="radio1" value="#{testBean.value}">
    <f:selectItem itemValue="High School" itemLabel="High School" />
    <f:selectItem itemValue="Bachelor's" itemLabel="Bachelor's"/>
    <f:selectItem itemValue="Master's" itemLabel="Master's"/>
    <f:selectItem itemValue="Doctorate" itemLabel="Doctorate" />
</h:selectOneRadio>
share|improve this question
Try to write questions not header. – Ankit May 5 '11 at 6:49
possible duplicate of How to set default value of h:selectOneRadio button – Harry Joy May 5 '11 at 6:49
Best question ever in SO ! – Soner Gönül May 5 '11 at 6:54
@user712201: Please read the faq before asking questions. If my answer didn't solve it, try a new question following the question guidelines from the faq. ;-) – Matt Handy May 5 '11 at 8:53

closed as not a real question by Harry Joy, musiKk, Björn Pollex, Jigar Joshi, Graviton May 5 '11 at 8:46

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 2 down vote accepted

Set value in your backing bean with the desired default value. For example if you want "High School" as default:

value = "High School";

This can be done in the constructor or in an @PostConstruct method depending on the scope of your backing bean.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.